tikzpicture 中 \draw[*-o] 中圆圈的大小

tikzpicture 中 \draw[*-o] 中圆圈的大小

在 tikzpicture 中使用 \draw[*-o] 时是否可以更改圆圈的大小?对于我的口味来说,圆圈有点太大了。

答案1

您也可以使用库Circle中的箭头arrows.meta;该length键允许您控制大小:

在此处输入图片描述

代码:

\documentclass[margin=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows,arrows.meta}

\begin{document}

\begin{tikzpicture}
\draw[*-o]
  (0,0)  --  (4,0);
\draw[Circle-{Circle[open]}]
  (0,-1)  --  (4,-1);
\draw[{Circle[length=2pt]}-{Circle[open,length=2pt]}]
  (0,-2)  --  (4,-2);
\draw[{Circle[length=10pt]}-{Circle[open,length=10pt]}]
  (0,-3)  --  (4,-3);
\end{tikzpicture}        

\end{document}

相关内容