如何在 tikz 包中定义带箭头的虚线?

如何在 tikz 包中定义带箭头的虚线?

下午好,

我想用虚线来指示方向,就像我为实线所做的那样。我该怎么做?我附上一张我希望它看起来是什么样子的图片。

在此处输入图片描述

谢谢。

\begin{figure}[h]
\centering
\begin{tikzpicture}[
  node distance=1cm and 1cm,
  mynode/.style={draw,circle,text width=0.5cm,align=center}
]

\node[mynode] (z) {A};
\node[mynode,below left=of z] (x) {B};
\node[mynode, below right=of z] (y) {C};

\node[mynode,right=of y] (a) {B};
\node[mynode,above right=of a] (b) {A};
\node[mynode,right=of b] (d) {C};
\node[mynode,below right=of d] (c) {D};

\path (z) edge[dashed] (x)
(z) edge[dashed] (y);

\path (b) edge[dashed] (d)
(a) edge[dashed] (b)
(d) edge[-latex] (c);

\end{tikzpicture}
\caption{Examples}
\end{figure}

相关内容