我怎样才能将所有这些方程式归为一组并编写它们而不会出现“缺少 $ 插入”的错误。...gy}

我怎样才能将所有这些方程式归为一组并编写它们而不会出现“缺少 $ 插入”的错误。...gy}

这是我想写的方程式,但它没有正常工作

在此处输入图片描述

这是我迄今为止尝试过的

    \begin{equation} \label{eq:3.2}
     & \[(EQE)= \frac{photons_{out}}{electrons_{in}}\]

     & = \frac{radiant flux / photon energy}{injected current / elementary charge}
        \end{equation}

答案1

您正在\[ \]另一个数学环境中嵌套数学模式{equation}。这是方程的推荐版本。

一些说明:

  • 这个数字应该放在等式的最后一行。
  • 使用\textfromamsmath显示文本。
  • 使用alignfromamsmath将不同行上的方程式对齐。
  • 不要在标签中使用数字。请使用有意义的标签\label
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
  \text{EQE}&=\frac{\#\,\text{photons}_{\text{out}}}{\#\,\text{electrons}_\text{in}}\nonumber\\
  &=\frac{\text{radiation flux}/\text{photon energy}}{\text{injected current}/\text{elementary charge}}\nonumber\\
  &=\frac{\Phi_e/E_{\text{ph}}}{I_{\text{in}/e}}=\frac{\Phi_e\times e}{I_{\text{in}\times E_{\text{ph}}}}\nonumber\\
  &=\frac{\pi\times A\times L_{\text{v}}\times e\times \lambda_{\text{average}}}{K_{\text{m}}\times V(\lambda_{\text{peak}})\times I_{\text{in}}\times hc}\label{eq:somename}
\end{align}
\end{document}

在此处输入图片描述

答案2

我会在环境中使用单一aligned环境equation。我还会使用\mathrm\textnormal来表示单词和首字母缩略词。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath} % for 'aligned' environment
\usepackage{newpxtext,newpxmath} % optional
\numberwithin{equation}{section} % optional

\begin{document}
\setcounter{section}{4}  % just for this example
\setcounter{equation}{4}

\begin{equation} \label{eq:EQE}
\begin{aligned}
\mathrm{EQE}
&= \frac{\textnormal{\#photons}_{\textnormal{out}}}{\textnormal{\#electrons}_{\textnormal{in}}}\\
&= \frac{\textnormal{radiant flux}/\textnormal{photon energy}}{\textnormal{injected current}/\textnormal{elementary charge}}
\end{aligned}
\end{equation}
\end{document} 

相关内容