I am trying to draw a simple picture using angle and quotes libraries.
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{3d,calc,quotes,angles,patterns}
\begin{document}
\begin{tikzpicture}[yscale=2]
\draw [name path=xaxis] [<->] (-5,0) coordinate (A) -- (0,0) coordinate (B);
\draw [->] (0,0) -- (0,3) coordinate (C);
\pic [draw, ->, "$\psi$", angle eccentricity=1.5] {angle = A--B--C};
\end{tikzpicture}
\end{document}
Code is generating following errors:
(/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryquotes.code.tex
! Package pgfkeys Error: I do not know the key '/handlers/first char syntax' and I am going to ignore it. Perhaps you misspelled it.
See the pgfkeys package documentation for explanation.
Type H <return> for immediate help.
...
l.38 \pgfkeys{/handlers/first char syntax=true}
?
and
Undefined control sequence.
l.9 \pic
[draw, ->, "$\psi$", angle eccentricity=1.5] {angle = A--B--C};
I understand that error is due to quotes packages. Since removing this package pgfkeys error goes away. Then I can not use \pic using angles. I updated to Texlive 2016 but problem is still unsolved. I am using Ubunut 14.04.03. Any help?
\pgfversioninto your document body to print the version. – percusse May 26 '17 at 08:09["$\psi$"]is that pgfkeys has to check whether the first character is". The implementation is going to be hacky. (Like the\catcodetrick in plain-TeX.) – Symbol 1 Jun 02 '17 at 14:56