如何在 TikZ 中绘制虚线环?我试过了
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node (X) [circle, draw] {X};
\draw (X) to [in=60, out=120, dashed, loop] ();
\end{tikzpicture}
\end{document}
不幸的是,loop
仅“监听”选项in
和out
,而不监听dashed
。结果循环不是虚线:
答案1
好吧,看来你搞砸了绘制参数。如果你这样做
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node (X) [circle, draw] {X};
\draw[dashed] (X) to [in=60, out=120, loop] ();
\end{tikzpicture}
\end{document}
你会得到一个漂亮的虚线循环: