我正在尝试在 TikZ 中创建图形图片,我希望其中有一些边dashdotted
。我在办公室电脑 (Mac) 和个人笔记本电脑 (Mac) 上都使用 TeXShop,并且文件在我的办公室电脑上编译得很好,但是当我尝试在笔记本电脑上编译同一个文件时,出现以下错误:
Package pgfkeys Error: I do not know the key '/tikz/dashdotted' and
I am going to ignore it. Perhaps you misspelled it...
我重新安装了最新版本的 MacTex,看看问题是否能得到解决,但并没有。
以下是我的测试文档中无法编译的代码:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[dashdotted] (0,0)--(10,0);
\end{tikzpicture}
\end{document}