Using TexShop 3.92 on mac OS X El Capitan V 10.11.6
1.13 works but not 1.15? Error: Choice '1.15' unknown in choice key 'p
What to do?
MWE:
\documentclass{scrartcl}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}
\begin{document}
\begin{tikzpicture}
\begin{axis}[scaled ticks=false,]
\addplot coordinates {
(20000,0.0005)
(40000,0.0010)
(60000,0.0020) };
\end{axis}
\end{tikzpicture}
\end{document}
compatit is so hard to guess that this is actually version. – user1700890 Mar 16 '20 at 16:57\pgfplotsversion, e.g.\documentclass{standalone} \usepackage{pgfplots} \begin{document} \pgfplotsversion \end{document}. – Torbjørn T. Mar 16 '20 at 17:24\usepgfplotslibrary{fillbetween}to work withcompat =1.10. Took me forever to figure out that this is due to version.compat =1.11solved it. I guesscompatis for compatability. – user1700890 Mar 16 '20 at 17:40compatis short for compatibility. However, thefillbetweenlibrary can work perfectly fine withcompat=1.10, or even nocompatsetting, try for example the first example in the section of the manual describing the library. So if you want to understand why your code failed with 1.10, make a complete example and ask a question about it. The one change I know about from 1.10 to 1.11 is that a coordinate such as in\draw (1,2) ..will be interpreted as being inaxiscoordinates with 1.11, but not with 1.10 where you'd need\draw (axis cs:1,2)for the same res. – Torbjørn T. Mar 16 '20 at 17:42