我对绘制平滑周期有疑问。
例如,当我尝试绘制以下图形时:
\draw plot [smooth cycle] coordinates{(0,-1),(1,-1),(2,0),(4,1),(5,0),(3,-1)};
我收到此错误消息:!包 tikz 错误:无法解析此坐标。请参阅 tikz 包文档以获取解释。
但是,还有一组不同的坐标,例如:
\draw plot [smooth cycle] coordinates {(0,0) (1,1) (3,1) (1,0) (2,-1)};
运行正常。您能帮我找出这两组坐标之间的区别吗?为什么我无法绘制我想要的图形?非常感谢!
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw plot [smooth cycle] coordinates{(0,-1),(1,-1),(2,0),(4,1),(5,0),(3,-1)};
\draw plot [smooth cycle] coordinates {(0,0) (1,1) (3,1) (1,0) (2,-1)};
\end{tikzpicture}
\end{document}