siunitx と積単位、混合単位

siunitx と積単位、混合単位

以下はフルで可能ですか?siunitx構文?

\documentclass{article}
\usepackage{siunitx}

\begin{document}

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

\end{document}

明確にするために:

次の 2 つのステートメントには違いがあると思います (ないかもしれません)。

\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}

出力

関連情報