要在 TikZ 中用“1”标记节点,我可以使用
\path (0,1) coordinate (P1) node[right=0.05cm] {1};
有没有办法把标签“1”圈起来?
答案1
将circle
和draw
选项添加到节点:
\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>
。