答案1
正如@barbarabeeton 所建议的那样,您可以aligned
在equation
环境中使用环境。 附加建议:为了在两组三个方程之间获得更多的水平分离,请在第一行\qquad\qquad
中间对齐标记之前插入。&
\documentclass{article}
\usepackage{amsmath} % for 'aligned' environment
\counterwithin{equation}{section} % optional
\usepackage{newtxtext,newtxmath} % optional -- Times Roman text and math font
\begin{document}
\setcounter{section}{3} % just for this query
\setcounter{equation}{21}
\begin{equation}
\begin{aligned}
c_1(0) &= c_i, \qquad\qquad& c_1(L) &= c_e, \\
c_2(0) &= c_i, & c_2(L) &= c_e, \\
\phi(0) &= V, & \phi(L) &= 0.
\end{aligned}
\end{equation}
\end{document}