Precision improvement â sequence plot
Clash Royale CLAN TAG#URR8PPP
up vote
3
down vote
favorite
I want to plot the graph of a sequence relating to continuous compounding with some annual interest rate and an input capital. However, it seems that the precision of the generated plot is insufficient (see the graph fluctuations below).
Output:
MWE:
documentclass[border=5pt]standalone%
usepackagetikz,pgfplots
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
addplot[%
mark=none,
domain=1:55,
samples=55,
only marks,
orange!50,
draw=black] 2000*(1+0.05/x)^x;
endaxis
endtikzpicture
enddocument
Question:
Is there any (simple) way for improving the precision of the addplot
-command (possibly without gnuplot)?
pgfplots
add a comment |Â
up vote
3
down vote
favorite
I want to plot the graph of a sequence relating to continuous compounding with some annual interest rate and an input capital. However, it seems that the precision of the generated plot is insufficient (see the graph fluctuations below).
Output:
MWE:
documentclass[border=5pt]standalone%
usepackagetikz,pgfplots
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
addplot[%
mark=none,
domain=1:55,
samples=55,
only marks,
orange!50,
draw=black] 2000*(1+0.05/x)^x;
endaxis
endtikzpicture
enddocument
Question:
Is there any (simple) way for improving the precision of the addplot
-command (possibly without gnuplot)?
pgfplots
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I want to plot the graph of a sequence relating to continuous compounding with some annual interest rate and an input capital. However, it seems that the precision of the generated plot is insufficient (see the graph fluctuations below).
Output:
MWE:
documentclass[border=5pt]standalone%
usepackagetikz,pgfplots
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
addplot[%
mark=none,
domain=1:55,
samples=55,
only marks,
orange!50,
draw=black] 2000*(1+0.05/x)^x;
endaxis
endtikzpicture
enddocument
Question:
Is there any (simple) way for improving the precision of the addplot
-command (possibly without gnuplot)?
pgfplots
I want to plot the graph of a sequence relating to continuous compounding with some annual interest rate and an input capital. However, it seems that the precision of the generated plot is insufficient (see the graph fluctuations below).
Output:
MWE:
documentclass[border=5pt]standalone%
usepackagetikz,pgfplots
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
addplot[%
mark=none,
domain=1:55,
samples=55,
only marks,
orange!50,
draw=black] 2000*(1+0.05/x)^x;
endaxis
endtikzpicture
enddocument
Question:
Is there any (simple) way for improving the precision of the addplot
-command (possibly without gnuplot)?
pgfplots
asked Aug 23 at 7:15
Marian G.
35518
35518
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
5
down vote
accepted
Here is an approach letting xint
do the computations.
Fortunately only integer (half-integers would be ok) exponents are needed. Indeed, xint
still waits for addition of support of mathematical functions such as log and exp.
Advantage is that it works will all engines (I used pdflatex).
documentclass[border=5pt]standalone
usepackagetikz,pgfplots
usepackagexintexpr
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
xintDigits:=8;% no need to use 16 digits of precision
addplot[%
mark=none,
% domain=1:55,
% samples=55,
only marks,
orange!50,
draw=black] coordinates %
xintthecoords% (converts x1,y1,x2,y2,... into (x1, y1) (x2, y2)...
% format, as expected by "coordinates")
xintfloatexpr
seq((x,2000*(1+0.05/x)^x), x=1..55)
% works with xint float engine
% because exponent is integer (or half-integer)
relax
;
endaxis
endtikzpicture
enddocument
Your approach works fine for me. I slightly changed the setting of precision digits toxintDigits:=10
. Now, the result is perfect for my needs.
â Marian G.
Aug 23 at 9:53
1
luckily there were no sine or cosine... they need to be added to xint. If you entirely drop thexintDigits
line, computations will be done with16
digits of (floating point) precision. It is also possible to set it to higher than16
but of course this has no interest for plotting here and would only slow down pgfplots code parsing the coordinates.
â jfbu
Aug 23 at 10:08
add a comment |Â
up vote
3
down vote
Warning: This answer is LuaLaTeX-based.
pgfplots
warns you about one important detail: You should use a newer compatibility setting. Just copying the line from the warning to the file solves the fluctuations (as pgpfplots
will use Lua to calculate the points).
documentclassarticle%
usepackagetikz,pgfplots
pgfplotssetcompat=1.16
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
addplot[%
mark=none,
domain=1:55,
samples=55,
only marks,
orange!50,
draw=black] 2000*(1+0.05/x)^x;
endaxis
endtikzpicture
enddocument
1
This is only true, if you run your code with LuaLaTeX, because withcompat=1.12
or higher then Lua is used for the calculation. Of course Lua can't be used when compiling with pdfLaTeX.
â Stefan Pinnow
Aug 23 at 7:58
1
@StefanPinnow Oops, there's a drawback having LuaLaTeX as default compiler :| I'll edit the post.
â TeXnician
Aug 23 at 8:08
@TeXnician: Thank you for your reply. I forgott to mention the fact that I'm using pdfLaTeX (TeXLive 2017). Adding the linepgfplotssetcompat=1.14
to my source does not change anything in the output in combination with pdfLaTeX. Unfortunatelly, I have no experiences with LuaLaTeX.
â Marian G.
Aug 23 at 9:42
@MarianG. No problem, most people use pdflatex, I just forgot that the compatibility option is only relevant for lualatex for the reason Stefan Pinnow mentioned. Luckily jfbu's answer will work, so everything is fine :)
â TeXnician
Aug 23 at 9:50
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
accepted
Here is an approach letting xint
do the computations.
Fortunately only integer (half-integers would be ok) exponents are needed. Indeed, xint
still waits for addition of support of mathematical functions such as log and exp.
Advantage is that it works will all engines (I used pdflatex).
documentclass[border=5pt]standalone
usepackagetikz,pgfplots
usepackagexintexpr
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
xintDigits:=8;% no need to use 16 digits of precision
addplot[%
mark=none,
% domain=1:55,
% samples=55,
only marks,
orange!50,
draw=black] coordinates %
xintthecoords% (converts x1,y1,x2,y2,... into (x1, y1) (x2, y2)...
% format, as expected by "coordinates")
xintfloatexpr
seq((x,2000*(1+0.05/x)^x), x=1..55)
% works with xint float engine
% because exponent is integer (or half-integer)
relax
;
endaxis
endtikzpicture
enddocument
Your approach works fine for me. I slightly changed the setting of precision digits toxintDigits:=10
. Now, the result is perfect for my needs.
â Marian G.
Aug 23 at 9:53
1
luckily there were no sine or cosine... they need to be added to xint. If you entirely drop thexintDigits
line, computations will be done with16
digits of (floating point) precision. It is also possible to set it to higher than16
but of course this has no interest for plotting here and would only slow down pgfplots code parsing the coordinates.
â jfbu
Aug 23 at 10:08
add a comment |Â
up vote
5
down vote
accepted
Here is an approach letting xint
do the computations.
Fortunately only integer (half-integers would be ok) exponents are needed. Indeed, xint
still waits for addition of support of mathematical functions such as log and exp.
Advantage is that it works will all engines (I used pdflatex).
documentclass[border=5pt]standalone
usepackagetikz,pgfplots
usepackagexintexpr
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
xintDigits:=8;% no need to use 16 digits of precision
addplot[%
mark=none,
% domain=1:55,
% samples=55,
only marks,
orange!50,
draw=black] coordinates %
xintthecoords% (converts x1,y1,x2,y2,... into (x1, y1) (x2, y2)...
% format, as expected by "coordinates")
xintfloatexpr
seq((x,2000*(1+0.05/x)^x), x=1..55)
% works with xint float engine
% because exponent is integer (or half-integer)
relax
;
endaxis
endtikzpicture
enddocument
Your approach works fine for me. I slightly changed the setting of precision digits toxintDigits:=10
. Now, the result is perfect for my needs.
â Marian G.
Aug 23 at 9:53
1
luckily there were no sine or cosine... they need to be added to xint. If you entirely drop thexintDigits
line, computations will be done with16
digits of (floating point) precision. It is also possible to set it to higher than16
but of course this has no interest for plotting here and would only slow down pgfplots code parsing the coordinates.
â jfbu
Aug 23 at 10:08
add a comment |Â
up vote
5
down vote
accepted
up vote
5
down vote
accepted
Here is an approach letting xint
do the computations.
Fortunately only integer (half-integers would be ok) exponents are needed. Indeed, xint
still waits for addition of support of mathematical functions such as log and exp.
Advantage is that it works will all engines (I used pdflatex).
documentclass[border=5pt]standalone
usepackagetikz,pgfplots
usepackagexintexpr
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
xintDigits:=8;% no need to use 16 digits of precision
addplot[%
mark=none,
% domain=1:55,
% samples=55,
only marks,
orange!50,
draw=black] coordinates %
xintthecoords% (converts x1,y1,x2,y2,... into (x1, y1) (x2, y2)...
% format, as expected by "coordinates")
xintfloatexpr
seq((x,2000*(1+0.05/x)^x), x=1..55)
% works with xint float engine
% because exponent is integer (or half-integer)
relax
;
endaxis
endtikzpicture
enddocument
Here is an approach letting xint
do the computations.
Fortunately only integer (half-integers would be ok) exponents are needed. Indeed, xint
still waits for addition of support of mathematical functions such as log and exp.
Advantage is that it works will all engines (I used pdflatex).
documentclass[border=5pt]standalone
usepackagetikz,pgfplots
usepackagexintexpr
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
xintDigits:=8;% no need to use 16 digits of precision
addplot[%
mark=none,
% domain=1:55,
% samples=55,
only marks,
orange!50,
draw=black] coordinates %
xintthecoords% (converts x1,y1,x2,y2,... into (x1, y1) (x2, y2)...
% format, as expected by "coordinates")
xintfloatexpr
seq((x,2000*(1+0.05/x)^x), x=1..55)
% works with xint float engine
% because exponent is integer (or half-integer)
relax
;
endaxis
endtikzpicture
enddocument
answered Aug 23 at 8:38
jfbu
41.5k60131
41.5k60131
Your approach works fine for me. I slightly changed the setting of precision digits toxintDigits:=10
. Now, the result is perfect for my needs.
â Marian G.
Aug 23 at 9:53
1
luckily there were no sine or cosine... they need to be added to xint. If you entirely drop thexintDigits
line, computations will be done with16
digits of (floating point) precision. It is also possible to set it to higher than16
but of course this has no interest for plotting here and would only slow down pgfplots code parsing the coordinates.
â jfbu
Aug 23 at 10:08
add a comment |Â
Your approach works fine for me. I slightly changed the setting of precision digits toxintDigits:=10
. Now, the result is perfect for my needs.
â Marian G.
Aug 23 at 9:53
1
luckily there were no sine or cosine... they need to be added to xint. If you entirely drop thexintDigits
line, computations will be done with16
digits of (floating point) precision. It is also possible to set it to higher than16
but of course this has no interest for plotting here and would only slow down pgfplots code parsing the coordinates.
â jfbu
Aug 23 at 10:08
Your approach works fine for me. I slightly changed the setting of precision digits to
xintDigits:=10
. Now, the result is perfect for my needs.â Marian G.
Aug 23 at 9:53
Your approach works fine for me. I slightly changed the setting of precision digits to
xintDigits:=10
. Now, the result is perfect for my needs.â Marian G.
Aug 23 at 9:53
1
1
luckily there were no sine or cosine... they need to be added to xint. If you entirely drop the
xintDigits
line, computations will be done with 16
digits of (floating point) precision. It is also possible to set it to higher than 16
but of course this has no interest for plotting here and would only slow down pgfplots code parsing the coordinates.â jfbu
Aug 23 at 10:08
luckily there were no sine or cosine... they need to be added to xint. If you entirely drop the
xintDigits
line, computations will be done with 16
digits of (floating point) precision. It is also possible to set it to higher than 16
but of course this has no interest for plotting here and would only slow down pgfplots code parsing the coordinates.â jfbu
Aug 23 at 10:08
add a comment |Â
up vote
3
down vote
Warning: This answer is LuaLaTeX-based.
pgfplots
warns you about one important detail: You should use a newer compatibility setting. Just copying the line from the warning to the file solves the fluctuations (as pgpfplots
will use Lua to calculate the points).
documentclassarticle%
usepackagetikz,pgfplots
pgfplotssetcompat=1.16
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
addplot[%
mark=none,
domain=1:55,
samples=55,
only marks,
orange!50,
draw=black] 2000*(1+0.05/x)^x;
endaxis
endtikzpicture
enddocument
1
This is only true, if you run your code with LuaLaTeX, because withcompat=1.12
or higher then Lua is used for the calculation. Of course Lua can't be used when compiling with pdfLaTeX.
â Stefan Pinnow
Aug 23 at 7:58
1
@StefanPinnow Oops, there's a drawback having LuaLaTeX as default compiler :| I'll edit the post.
â TeXnician
Aug 23 at 8:08
@TeXnician: Thank you for your reply. I forgott to mention the fact that I'm using pdfLaTeX (TeXLive 2017). Adding the linepgfplotssetcompat=1.14
to my source does not change anything in the output in combination with pdfLaTeX. Unfortunatelly, I have no experiences with LuaLaTeX.
â Marian G.
Aug 23 at 9:42
@MarianG. No problem, most people use pdflatex, I just forgot that the compatibility option is only relevant for lualatex for the reason Stefan Pinnow mentioned. Luckily jfbu's answer will work, so everything is fine :)
â TeXnician
Aug 23 at 9:50
add a comment |Â
up vote
3
down vote
Warning: This answer is LuaLaTeX-based.
pgfplots
warns you about one important detail: You should use a newer compatibility setting. Just copying the line from the warning to the file solves the fluctuations (as pgpfplots
will use Lua to calculate the points).
documentclassarticle%
usepackagetikz,pgfplots
pgfplotssetcompat=1.16
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
addplot[%
mark=none,
domain=1:55,
samples=55,
only marks,
orange!50,
draw=black] 2000*(1+0.05/x)^x;
endaxis
endtikzpicture
enddocument
1
This is only true, if you run your code with LuaLaTeX, because withcompat=1.12
or higher then Lua is used for the calculation. Of course Lua can't be used when compiling with pdfLaTeX.
â Stefan Pinnow
Aug 23 at 7:58
1
@StefanPinnow Oops, there's a drawback having LuaLaTeX as default compiler :| I'll edit the post.
â TeXnician
Aug 23 at 8:08
@TeXnician: Thank you for your reply. I forgott to mention the fact that I'm using pdfLaTeX (TeXLive 2017). Adding the linepgfplotssetcompat=1.14
to my source does not change anything in the output in combination with pdfLaTeX. Unfortunatelly, I have no experiences with LuaLaTeX.
â Marian G.
Aug 23 at 9:42
@MarianG. No problem, most people use pdflatex, I just forgot that the compatibility option is only relevant for lualatex for the reason Stefan Pinnow mentioned. Luckily jfbu's answer will work, so everything is fine :)
â TeXnician
Aug 23 at 9:50
add a comment |Â
up vote
3
down vote
up vote
3
down vote
Warning: This answer is LuaLaTeX-based.
pgfplots
warns you about one important detail: You should use a newer compatibility setting. Just copying the line from the warning to the file solves the fluctuations (as pgpfplots
will use Lua to calculate the points).
documentclassarticle%
usepackagetikz,pgfplots
pgfplotssetcompat=1.16
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
addplot[%
mark=none,
domain=1:55,
samples=55,
only marks,
orange!50,
draw=black] 2000*(1+0.05/x)^x;
endaxis
endtikzpicture
enddocument
Warning: This answer is LuaLaTeX-based.
pgfplots
warns you about one important detail: You should use a newer compatibility setting. Just copying the line from the warning to the file solves the fluctuations (as pgpfplots
will use Lua to calculate the points).
documentclassarticle%
usepackagetikz,pgfplots
pgfplotssetcompat=1.16
begindocument
begintikzpicture[font=scriptsize]
beginaxis[%
axis x line=bottom,
axis y line=center,
tick align=outside,
axis y discontinuity=crunch,
xtickmax=55,
ytickmin=2100,
ytickmax=2103,
ymin=2098,
enlargelimits=true,
mark size=1pt,
yticklabel style=/pgf/number format/1000 sep=,
]
addplot[%
mark=none,
domain=1:55,
samples=55,
only marks,
orange!50,
draw=black] 2000*(1+0.05/x)^x;
endaxis
endtikzpicture
enddocument
edited Aug 23 at 8:10
answered Aug 23 at 7:45
TeXnician
20.4k52880
20.4k52880
1
This is only true, if you run your code with LuaLaTeX, because withcompat=1.12
or higher then Lua is used for the calculation. Of course Lua can't be used when compiling with pdfLaTeX.
â Stefan Pinnow
Aug 23 at 7:58
1
@StefanPinnow Oops, there's a drawback having LuaLaTeX as default compiler :| I'll edit the post.
â TeXnician
Aug 23 at 8:08
@TeXnician: Thank you for your reply. I forgott to mention the fact that I'm using pdfLaTeX (TeXLive 2017). Adding the linepgfplotssetcompat=1.14
to my source does not change anything in the output in combination with pdfLaTeX. Unfortunatelly, I have no experiences with LuaLaTeX.
â Marian G.
Aug 23 at 9:42
@MarianG. No problem, most people use pdflatex, I just forgot that the compatibility option is only relevant for lualatex for the reason Stefan Pinnow mentioned. Luckily jfbu's answer will work, so everything is fine :)
â TeXnician
Aug 23 at 9:50
add a comment |Â
1
This is only true, if you run your code with LuaLaTeX, because withcompat=1.12
or higher then Lua is used for the calculation. Of course Lua can't be used when compiling with pdfLaTeX.
â Stefan Pinnow
Aug 23 at 7:58
1
@StefanPinnow Oops, there's a drawback having LuaLaTeX as default compiler :| I'll edit the post.
â TeXnician
Aug 23 at 8:08
@TeXnician: Thank you for your reply. I forgott to mention the fact that I'm using pdfLaTeX (TeXLive 2017). Adding the linepgfplotssetcompat=1.14
to my source does not change anything in the output in combination with pdfLaTeX. Unfortunatelly, I have no experiences with LuaLaTeX.
â Marian G.
Aug 23 at 9:42
@MarianG. No problem, most people use pdflatex, I just forgot that the compatibility option is only relevant for lualatex for the reason Stefan Pinnow mentioned. Luckily jfbu's answer will work, so everything is fine :)
â TeXnician
Aug 23 at 9:50
1
1
This is only true, if you run your code with LuaLaTeX, because with
compat=1.12
or higher then Lua is used for the calculation. Of course Lua can't be used when compiling with pdfLaTeX.â Stefan Pinnow
Aug 23 at 7:58
This is only true, if you run your code with LuaLaTeX, because with
compat=1.12
or higher then Lua is used for the calculation. Of course Lua can't be used when compiling with pdfLaTeX.â Stefan Pinnow
Aug 23 at 7:58
1
1
@StefanPinnow Oops, there's a drawback having LuaLaTeX as default compiler :| I'll edit the post.
â TeXnician
Aug 23 at 8:08
@StefanPinnow Oops, there's a drawback having LuaLaTeX as default compiler :| I'll edit the post.
â TeXnician
Aug 23 at 8:08
@TeXnician: Thank you for your reply. I forgott to mention the fact that I'm using pdfLaTeX (TeXLive 2017). Adding the line
pgfplotssetcompat=1.14
to my source does not change anything in the output in combination with pdfLaTeX. Unfortunatelly, I have no experiences with LuaLaTeX.â Marian G.
Aug 23 at 9:42
@TeXnician: Thank you for your reply. I forgott to mention the fact that I'm using pdfLaTeX (TeXLive 2017). Adding the line
pgfplotssetcompat=1.14
to my source does not change anything in the output in combination with pdfLaTeX. Unfortunatelly, I have no experiences with LuaLaTeX.â Marian G.
Aug 23 at 9:42
@MarianG. No problem, most people use pdflatex, I just forgot that the compatibility option is only relevant for lualatex for the reason Stefan Pinnow mentioned. Luckily jfbu's answer will work, so everything is fine :)
â TeXnician
Aug 23 at 9:50
@MarianG. No problem, most people use pdflatex, I just forgot that the compatibility option is only relevant for lualatex for the reason Stefan Pinnow mentioned. Luckily jfbu's answer will work, so everything is fine :)
â TeXnician
Aug 23 at 9:50
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f447279%2fprecision-improvement-sequence-plot%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password