I'm trying to follow the example from the tikz manual (2.10-CVS development version), but I'm not meeting success. Here's my MWE
\documentclass{article}
\usepackage{pgfkeys}
\pgfkeys
{
/handlers/first char syntax=true,
/handlers/first char syntax/the character "/.initial=\hello,
}
\newcommand{\hello}[1]{Quoted: #1.}
\pagestyle{empty}
\begin{document}
Hello: \pgfkeys{"Does this work"}
\end{document}
But I'm getting the following error:
! Undefined control sequence.
\pgfkeys@syntax@handlers ->\pgfutil@ifnextchar
\relax \pgfkeys@syntax@@handl...
l.8 }
?
Any suggestions?
first char syntaxin the PGF v2.10 manual. (I get an error about an unknown key, not the internal one you get.) – Joseph Wright Jul 06 '13 at 16:38pgfinstead ofpgfkeys... – Paul Gaborit Jul 06 '13 at 16:50