如何制作三条虚线?

如何制作三条虚线?

如何制作连接两个顶点的三条虚线。就像这张图片一样 在此处输入图片描述

答案1

这里有两个解决方案,第一个解决方案使用\dots,第二个解决方案在您想要的位置绘制三个独立的点。

\documentclass[tikz,border=2mm]{standalone} 
\usetikzlibrary{positioning}

\begin{document}
\begin{tikzpicture}[mycircle/.style={circle, draw, inner sep=2pt},
    mydot/.style={circle, fill, inner sep=.5pt}]

\node[mycircle] (a1) {} ;
\node[mycircle, right=3cm of a1] (a2) {};
\node[mycircle, below=2cm of a1] (b1) {};
\node[mycircle, right=5mm of b1] (b2) {};
\node[mycircle, right=3cm of b2] (b3) {};
\draw[ultra thick] (a1)--(b1) (a1)--(b2) (a2)--(b3);
\path (a1) -- node {\dots} (a2);
\path (b2)-- node[mydot, pos=.333] {} node[mydot] {} node[mydot, pos=.666] {}(b3);

\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容