答案1
我不知道你从哪里来的\vertex
,但对于普通的 TikZ,node
你需要将整个标签括在 中{ .. }
,因为解析器会对标签中的逗号感到困惑。所以使用label={right:$\{x_1,x_2\}$}
而不是label=right:$\{x_1,x_2\}$
\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node [circle,fill] (u1) at (45:2) [label={right:$\{x_1,x_2\}$}]{};
\end{tikzpicture}
\end{document}