我尝试在 tikz 节点中显示 \textwidth 的值,但下面的代码似乎不起作用:
\documentclass[a4paper,12pt]{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node (A) {\textwidth};
\end{tikzpicture}
\end{document}
如果我定义一个宏,它似乎工作正常。
答案1
据我了解,你想要:
\documentclass[a4paper,12pt]{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node (A) {\the\textwidth};
\end{tikzpicture}
\end{document}
(没有图片,因为只有值 390pt 并且没有节点的形状。)