这是来自 tikz/pgfmanual 第 274 页的内容:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{graphs}
\begin{document}
\begin{tikzpicture}
\tikz \graph [quick] { "a" --["foo"] "b"[x=1] };
\end{tikzpicture}
\end{document}
当我尝试lualatex
此文件时,我得到以下信息:
! Package pgfkeys Error: I do not know the key '/tikz/"foo"' 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.8 \tikz \graph [quick] { "a" --["foo"] "b"[x=1]
我在这里遗漏了什么?
谢谢!