在三角形的中心绘制(Tikz)

在三角形的中心绘制(Tikz)

如何在三角形的中心绘制标签而不绘制三角形本身?

我不想让三角形的绘制干扰其他绘图元素,所以我只想要标签。

答案1

像这样?

\documentclass[tikz,border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}
\draw (0,0) coordinate[label=A] (A) circle (2pt);
\draw (2,5) coordinate[label=B] (B) circle (2pt);
\draw (4,2) coordinate[label=C] (C) circle (2pt);
\node at (barycentric cs:A=1,B=1,C=1) {D};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容