并排方程只有一个方程编号?

并排方程只有一个方程编号?

我基本上需要一些编码方面的帮助这 这样就只有一个方程编号。到目前为止,我已经得出了以下结论:

\begin{align}
 c_1(0) &= c_i, & c_1(L) &= c_e, \\
    c_2(0) &= c_i,      &    c_2(L) &= c_e, \\
    u(0) &= V,             &     u(L) &= 0.
\end{align}

任何帮助将不胜感激!

答案1

正如@barbarabeeton 所建议的那样,您可以alignedequation环境中使用环境。 附加建议:为了在两组三个方程之间获得更多的水平分离,请在第一行\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}

相关内容