我正在尝试安装 TikZ 结库,但遇到了一些麻烦。
我的电脑运行的是 Mac OS X 10.10.2 和 MacTeX(但我不记得版本/年份了)。 spath3
已从加拿大运输安全局并复制到我的本地 texmf 树$TEXMF/tex/generic/pgf
。我从另一篇文章中复制了一些示例代码来尝试编译:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{knots}
\usepgfmodule{decorations}
\begin{document}
\begin{tikzpicture}
\draw[decoration={markings, mark=at position 0.5 with {\arrow{>}}},postaction={decorate}] (0,1) -- (1,1);
\draw[knot=black,decoration={markings, mark=at position 0.5 with {\arrow{>}}},postaction={decorate}] (0,0) -- (1,0);
\end{tikzpicture}
\end{document}
我收到的错误是
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! $TEXMF/tex/generic/pgf/spath3/spath3.sty:103: LaTeX error: "kernel/command-not-defined"
!
! Control sequence \__prop_split:NnTF undefined.
!
! See the LaTeX3 documentation for further information.
!
! For immediate help type H <return>.
!....................................................
1.103 \cs_generate_variant:Nn \__prop_split:NnTF
{cnTF}
?
我知道特克斯关于克隆所需库的 Git 存储库,但我不知道 spath3 和/或 knots 库的正确地址。
任何帮助是极大的赞赏!!!