自定义寄存器的ID怎样才能显示在文档里(不是终端或日志里)?

自定义寄存器的ID怎样才能显示在文档里(不是终端或日志里)?

如何获取寄存器的 ID?我可以看到它,\show但无法在文档本身中使用它(保存和显示)。

\documentclass[varwidth,border=5mm]{standalone}
\begin{document}
  \newdimen\dA
  \show\dA % OUTPUT: \dA=\dimen105
  % HOW TO DISPLAY 105
  %  (WHICH IS ID OF \dA REGISTER)?
\end{document}

答案1

终端上显示的信息\show始终可在文档中使用\meaning

在此处输入图片描述

\documentclass[varwidth,border=5mm]{standalone}
\begin{document}
  \newdimen\dA
  at this point you could use\\
   \the\allocationnumber\\
   but after  \newcount\zzz  that will change but you can use\\
   \texttt{\meaning\dA.}

\end{document}

相关内容