TikZ 中的虚线循环

TikZ 中的虚线循环

如何在 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仅“监听”选项inout,而不监听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}

你会得到一个漂亮的虚线循环:

在此处输入图片描述

相关内容