我正在输入这个方程式
\eta=\frac{82\cdot4\cdot1.44 \textrm{MeV}\cdot10$^-15$\textrm{m}}{2\cdot6.582\cdot 10$^-10$ \textrm{MeV}\cdot\textrm{s}\cdot0.0774\cdot2.998\cdot10$^8$\textrm{ms$^-1$}}
但我无法发现错误。
答案1
这是使用siunitx
包裹:
\documentclass{article}
\usepackage[
% locale = DE,% comma instead of full stop as decimal separator
exponent-product = \cdot,
inter-unit-product = \ensuremath{{}\cdot{}}
]{siunitx}
\begin{document}
\begin{equation}
\eta
= \frac{82 \cdot 4 \cdot \SI{1.44}{\MeV} \cdot \SI{e-15}{\m}}% numerator
{2 \cdot \SI{6.582e-10}{\MeV\s} \cdot \num{0.0774} \cdot \SI{2.998e8}{\m\per\s}}% denominator
\end{equation}
\end{document}