TikZ 中的圆圈标签

TikZ 中的圆圈标签

要在 TikZ 中用“1”标记节点,我可以使用

\path (0,1) coordinate (P1) node[right=0.05cm] {1};

有没有办法把标签“1”圈起来?

答案1

circledraw选项添加到节点:

\documentclass{article}
\usepackage{tikz}

\begin{document}

\begin{tikzpicture} 
\path (0,1) coordinate (P1) node[right=0.05cm,circle,draw] {1};
\end{tikzpicture}

\end{document}

您可以使用 来调整边框和 之间的距离1,例如inner sep=<length>minimum size=<length>

在此处输入图片描述

相关内容