您好,我正在尝试构造以下等式,但是等式被编号了三次,而我只需要编号一次。有什么方法可以实现吗?
\documentclass[12pt]{article}
\addtolength{\parskip}{\baselineskip}
\usepackage[margin=1in,includefoot]{geometry}
\usepackage[fleqn]{amsmath}
\usepackage{mathtools}
\begin{document}
\begin{flalign}
logw_{it} = & \ B_0 + B_1edu_t + B_2exp_t + B_3exp^2_t + D_1urban + D_2married + D_3public\\ &&\\
&\ +D_4religion + D_5caste +D_6industry + D_6occupation + e_{it} &&
\end{flalign}
\end{document}
答案1
您可以使用@ChristianHupfer 的建议,或者改用aligned
。您不需要,flalign
因为您已经设置了fleqn
的选项amsmath
。您可能还需要将 设置\mathindent
为0pt
以获得与原始设置相同的输出。最后,像edu
、urban
、married
等词不是数学变量,因此可以将它们排版为\text{..}
或\mathrm{..}
,甚至是较旧的\rm{..}
。
\documentclass[12pt]{article}
\addtolength{\parskip}{\baselineskip}
\usepackage[margin=1in,includefoot]{geometry}
\usepackage[fleqn]{amsmath}
\usepackage{mathtools}
\begin{document}
\setlength{\mathindent}{0pt}
\begin{equation}
\begin{aligned}
\mathrm{logw}_\mathrm{it} &= B_0 + B_1\,\mathrm{edu}_t + B_2\,\exp_t + B_3\,\exp^2_t + D_1\,\mathrm{urban} + D_2\,\mathrm{married} + D_3\,\mathrm{public} \\
&\phantom{={}} + D_4\,\mathrm{religion} + D_5\,\mathrm{caste} +D_6\,\mathrm{industry} + D_6\,\mathrm{occupation} + e_\mathrm{it}
\end{aligned}
\end{equation}
\end{document}