
다음은 전체로 가능합니까?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}