
Quero compor um coeficiente de amortecimento (Força/Velocidade) assim
c = 100 N/(m/s)
ou
-1
c = 100 N (m/s)
usando LaTeX e o siunitx
pacote, mas não sei se é possível fazer o tipo de agrupamento que gostaria de fazer.
Você poderia me ajudar?
Responder1
\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}