如何在 Tikz 图上放置节点

如何在 Tikz 图上放置节点

我用 TikZ 制作了这条曲线:

\documentclass{article}

\usepackage{tikz}

\begin{document}
    
\begin{tikzpicture}
    \draw [cyan,line width=1mm] plot [smooth, tension=2] coordinates { (0,0) (5,3) (9,-1) (11,4)} ;
\end{tikzpicture}
    
\end{document}

在此处输入图片描述

我想在这个图上放置几个节点。我知道在axis环境中这是可行的,但我不知道如何在这里做到这一点。

答案1

因此我按照@Celdor 的建议查阅了 TikZ 手册,并进行了以下操作

\documentclass{article}
\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
\draw [cyan,line width=1mm] (0,0) .. controls (3,5) and (6,-1) .. (7,2)  node (a1) [pos=0.1,circle,draw,inner sep=0pt,minimum size=5pt,fill]{} node (a2) [pos=0.3,circle,draw,inner sep=0pt,minimum size=5pt,fill]{} node (a3) [pos=0.8,circle,draw,inner sep=0pt,minimum size=5pt,fill]{}  ;
\end{tikzpicture}

\end{document} 

其结果如下: 在此处输入图片描述

谢谢!

相关内容