我想像这样排版阻尼系数(力/速度)
c = 100 N/(m/s)
或者
-1
c = 100 N (m/s)
使用 LaTeX 和siunitx
包,但我不知道是否可以进行我想要的分组。
你可以帮帮我吗?
答案1
\documentclass[12pt]{article}
\usepackage{siunitx}
% \usepackage{amsmath}
\begin{document}
First method, from @Sebastiano:
\begin{verbatim}
$c=100\, \unit{N \per(\meter\per\second)}$ or $c=\,100 \unit{N (m\per s)^{-1}}$
\end{verbatim}
$c=100\, \unit{N \per(\meter\per\second)}$ or $c=\,100 \unit{N (m\per s)^{-1}}$
\vspace{1ex}
Same, but with the thin space separating the number from the units in the second case corrected:
\begin{verbatim}
$c=100\, \unit{N \per(\meter\per\second)}$ or $c=100 \, \unit{N (m\per s)^{-1}}$
\end{verbatim}
$c=100\, \unit{N \per(\meter\per\second)}$ or $c=100 \, \unit{N (m\per s)^{-1}}$
\vspace{1ex}
Another approach which uses a fractional form. This wasn't requested by the original poster, but I personally find it more readable:
\begin{verbatim}
$c = \qty{100}{\frac{N}{m/s}}$
\end{verbatim}
$c = \qty{100}{\frac{N}{m/s}}$
\end{document}