IEEEeqnarray - 中心编号

IEEEeqnarray - 中心编号

我喜欢 IEEEeqnarray,但在通过 Stack 搜索后,我还没有找到一个好的解决方案,将方程式分组到与其余方程式垂直居中的单个数字下。

类似于:

\begin{equation}\label{eq:equation_name}
\begin{aligned}
y_1 &= m_1 x + b_2\\
y_2 &= m_2 x + b_2
\end{aligned}
\end{equation}

答案1

您可以使用IEEEeqnarraybox垂直居中。请注意,第一个可选参数是要在框前面排版的文本,因此您需要第二个参数。

\documentclass{article}
\usepackage{amsmath}
\usepackage{IEEEtrantools}

\begin{document}

\begin{equation}
\begin{aligned}
y_1 &= m_1 x + b_2\\
y_2 &= m_2 x + b_2
\end{aligned}
\end{equation}

\begin{equation}
\begin{IEEEeqnarraybox}[][c]{rCl}
y_1 &= m_1 x + b_2\\
y_2 &= m_2 x + b_2
\end{IEEEeqnarraybox}
\end{equation}

\end{document}

在此处输入图片描述

相关内容