答案1
per-mode=fraction
我看起来好像您已经设置了包的选项。(顺便说一下,siunitx
默认值是。)如果结果分数表达式对您来说看起来不对称或不平衡——在我看来不是,但印象是主观的——您可能想要切换到或。后两个选项的一个优点是符号和以周围运行文本的大小呈现。per-mode=reciprocal
per-mode=reciprocal
per-mode=symbol
m
h
\documentclass{beamer}
\usepackage{siunitx} % for "\SI" macro
\begin{document}
\begin{frame}
\SI[per-mode=fraction]{500}{\cubic\metre\per\hour},
\SI[per-mode=reciprocal]{500}{\cubic\metre\per\hour}, % this is the default
\SI[per-mode=symbol]{500}{\cubic\metre\per\hour}
\end{frame}
\end{document}