我遇到了一个奇怪的问题与si单位的包。
我输入\SI{35}{\MeV},得到的输出为3.5x10^1 MeV,但我想要35 MeV.
我似乎找不到合适的参数,下面是到目前为止我在“乳胶-光束-文档”中使用的包:
\documentclass[aspectratio=169]{beamer}
\usetheme{Bruno}
\usepackage{subfig}
\usepackage[italic]{hepnames}
\usepackage[ugly]{units}
\usepackage[scientific-notation=true]{siunitx}有人知道我错过了什么吗?
发布于 2020-06-23 13:26:44
如果不想使用科学符号,请不要强迫siunits使用它:
\documentclass[aspectratio=169]{beamer}
\usepackage[
%scientific-notation=true
]{siunitx}
\begin{document}
\begin{frame}
\SI{35}{\MeV}
\end{frame}
\end{document}

https://stackoverflow.com/questions/62535535
复制相似问题