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}

выход

Связанный контент