我正在尝试使用 TikZ 在环形图中的节点中写入符号。然而,我的示例不起作用:
\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}[scale=0.5,vertex/.style={draw,circle}]
\foreach \letter [count=\c from 0] in {1,2,$\tau$,D,E,F,G,H} {
\node[vertex] (\letter) at ({-360/10*\c+157.5}:4cm) {\letter};
}
\end{tikzpicture}
\end{document}
是否有人有解决方案来解决因术语 $\tau$ 引起的问题?有没有办法以在节点中显示的方式表达此符号?