帶有產品單位、混合單位的 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}

輸出

相關內容