siunitx 与产品单元、混合单元

siunitx 与产品单元、混合单元

以下是否可能完全siunitx句法?

\documentclass{article}
\usepackage{siunitx}

\begin{document}

$\SI{80}{\micro\meter}\times\SI{1.25}{mm}$

\end{document}

为了澄清:

我猜测以下两种说法是有区别的(也许没有?):

\documentclass{article}
\usepackage{siunitx}

\begin{document}

$\SI{80}{\um}\times\SI{1.25}{\um}$
$\SI{80x1.25}{\um}$

\end{document}

上述陈述的等效内容是什么(使用不同的单位)?

答案1

以下是我的做法:

\documentclass{article}

\usepackage{siunitx}

\begin{document}

\noindent You can write ``\verb|\SI{80}{\um} \times \SI{1.25}{\mm}|'' and get the output
\begin{equation}
  \SI{80}{\um} \times \SI{1.25}{\mm}
\end{equation}
but it is not possible to write it with ``full \verb|siunitx| syntax'', as thew OP calls it. The reason for this is given by the author of the package, Joseph  Wright, in a comment to this post.

\end{document}

输出

相关内容