
O seguinte é possível com fullsiunitx
sintaxe?
\documentclass{article}
\usepackage{siunitx}
\begin{document}
$\SI{80}{\micro\meter}\times\SI{1.25}{mm}$
\end{document}
Para esclarecimentos:
Acho que há uma diferença entre as duas afirmações a seguir (talvez não?):
\documentclass{article}
\usepackage{siunitx}
\begin{document}
$\SI{80}{\um}\times\SI{1.25}{\um}$
$\SI{80x1.25}{\um}$
\end{document}
Qual seria o equivalente da afirmação acima (com unidades diferentes)?
Responder1
Aqui está como eu faria isso:
\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}