目标

目标

目标

我想放置一个带有“其中”解释文本的方程式,其中某些参数是特殊字符。

更直观地讲,我想在 LaTex 中实现这一点:

在此处输入图片描述

我的尝试

\begin{align}
 &g =  m\frac{\lambda}{cos(\theta) 2n}\label{eq:1} \\ 
 &\parbox[t]{10cm}{Where m is an integer (1,2,3… ), $\lambda$ the wavelength index of the medium between the layers} \nonumber \\
\end{align}

问题

我收到以下错误:

未封闭的开放群

答案1

也许我忽略了什么,但我看不出这里需要align环境;单一equation环境似乎更自然。不过,我强烈建议您cos用替换\cos

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\noindent
[text before equation]
\begin{equation}
g =  m \frac{\lambda}{\cos(\theta) 2n} \label{eq:1}
\end{equation}
where $m$ is an integer ($1,2,3,\dots$), $\lambda$ the wavelength, 
$\theta$ the incident angle, and~$n$ the refractive index of the 
medium between the layers.
\end{document}

附录解决 OP 的后续评论:这是一个两行align环境,其中第二“行”由 组成\parbox

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\noindent
[text before equation]
\begin{align}
&g =  m \frac{\lambda}{\cos(\theta) 2n} \label{eq:1} \\
&\parbox[t]{10cm}{where $m$ is an integer ($1,2,3,\dots$), 
$\lambda$ the wavelength, $\theta$ the incident angle, and~$n$
the refractive index of the medium between the layers.} \notag
\end{align}
[text after equation]
\end{document}

相关内容