检测某物的长度?

检测某物的长度?

在 LaTeX 中,有没有一种方法可以通过以下形式的函数来检测某个东西的长度:

\NewDocumentCommand\iflength{m m m}{%CODE HERE%}

在哪里:

  • 第一个参数是要测试的东西
  • 第二个是真正的分支
  • 第三是假枝

测试代码

\documentclass[preview = true, varwidth = true]{standalone}

\NewDocumentCommand\iflength{m m m}{
    %CODE HERE
}

\newlength{\mylength}
\setlength{\mylength}{10pt plus 1pt minus 1pt}
\newcommand{\commandlength}{10pt plus 1pt minus 1pt}
\newcommand{\commandstring}{xxx}

\begin{document}
\iflength{\mylength}{true}{false}        % should be true
\iflength{\commandlength}{true}{false}   % should be false (ideally, but ok if true)
\iflength{\commandstring}{true}{false}   % should be false
\end{document}

相关内容