[Tex/LaTex] How to use siunitx to write 100 MBps

siunitx

I want to show 100 MBps (one hundred mega byte per second) in my article. How to make use of siunitx package to produce the rate correctly?

The following outputs are not what I want to get.

enter image description here

Best Answer

You could do something like

\documentclass{article}
\usepackage{siunitx}
\sisetup{per-mode=symbol,per-symbol = p}
\begin{document}
\SI{100}{\mega\byte\per\second}
\end{document}
Related Question