如何在方程式中加入 \Rightarrow

如何在方程式中加入 \Rightarrow

我想在等式中引入 \Rightarrow,但是“!缺少} 插入}”。

\documentclass[fleqn]{article}

\usepackage{amsmath} 

\begin{flalign}

\rho = \frac{1}{\sigma} = \frac{m_0^{*}\cdot v_F}{N_0\cdot q_0^{2}\cdot \tilde{l} } = 
\frac{ 9,1 \cdot 10^{-31}\cdot 1,38}{5,86\cdot 10^{28}\cdot (1,6\cdot10^{-19})^{2}\cdot525 }  
$\Rightarrow$ $\rho = 20,65  [n\si{\ohm}m]$

\end{flalign}

\end{document}

答案1

以下是我编写示例的方式。我已将所有十进制数字(带单位的数字除外)换行以确保其格式正确(仅使用 $1,12$,逗号周围的间距不是小数间距而是标点间距)。另请注意(and )\num如何支持科学记数法,更不用说打字了)\num\SI

\documentclass[fleqn]{article}

\usepackage{amsmath} 
\usepackage{siunitx}

\sisetup{
  locale=DE, % use comma not . as the decimal
}

\begin{document}

\begin{align}
\rho = \frac{1}{\sigma} &= \frac{m_0^{*}\cdot v_F}{N_0\cdot q_0^{2}\cdot \tilde{l} } = 
\frac{ \num{9,1e-31}\cdot \num{1,38}}{\num{5,86e28}\cdot
  (\num{1,6e-19})^{2}\cdot525 }
\\
\Rightarrow \rho &= \SI{20,65}{\ohm\meter}
\end{align}

\end{document}

相关内容