
¿Es posible lo siguiente con totalsiunitx
¿sintaxis?
\documentclass{article}
\usepackage{siunitx}
\begin{document}
$\SI{80}{\micro\meter}\times\SI{1.25}{mm}$
\end{document}
Para aclaración:
Supongo que hay una diferencia entre las dos afirmaciones siguientes (¿tal vez no?):
\documentclass{article}
\usepackage{siunitx}
\begin{document}
$\SI{80}{\um}\times\SI{1.25}{\um}$
$\SI{80x1.25}{\um}$
\end{document}
¿Cuál sería el equivalente de la afirmación anterior (con diferentes unidades)?
Respuesta1
Así es como lo haría:
\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}