将方程组写在单独的行上,中间用“其中”和“和”隔开

将方程组写在单独的行上,中间用“其中”和“和”隔开

如何使用 LaTeX 生成以下内容?

在此处输入图片描述

我的解决方案:

\begin{equation}
S  = \left( t^{(0)}, t^{(1)}, \ldots, t^{(n)} \right)
\end{equation}
where:
\begin{equation}
\rho^{(0)} < \rho^{(1)} < \ldots < \rho^{(n)}
\end{equation}
and
\begin{equation}
Bs_t_j^{(-1)} < t_e_p^{(j)} < \ldots < Bs_t_j^{(0)} \quad \text{ for }  j = 1, 2, \ldots, n 
\end{equation}

我的显示: 在此处输入图片描述

答案1

您很可能正在使用IEEEtran

  1. aligned在内部使用equation
  2. 不需要时\left请勿使用;\right
  3. 注意\dots而不是\ldots
  4. 检查双下标。
\documentclass{IEEEtran}
\usepackage{amsmath}

\begin{document}

\begin{equation}
\begin{aligned}
& S  = ( t^{(0)}, t^{(1)}, \dots, t^{(n)} )
\\
\text{where } & \rho^{(0)} < \rho^{(1)} < \dots < \rho^{(n)}
\\
\text{and } & Bs_{tj}^{(-1)} < t_{ep}^{(j)} < \dots < Bs_{tj}^{(0)}
  \text{ for }  j = 1, 2, \dots, n
\end{aligned}
\end{equation}

\end{document}

在此处输入图片描述

使用 NewTX 效果更佳:

\documentclass{IEEEtran}
\usepackage{amsmath}
\usepackage{newtxtext,newtxmath}

\begin{document}

\begin{equation}
\begin{aligned}
& S  = ( t^{(0)}, t^{(1)}, \dots, t^{(n)} )
\\
\text{where } & \rho^{(0)} < \rho^{(1)} < \dots < \rho^{(n)}
\\
\text{and } & Bs_{tj}^{(-1)} < t_{ep}^{(j)} < \dots < Bs_{tj}^{(0)}
  \text{ for }  j = 1, 2, \dots, n 
\end{aligned}
\end{equation}

\end{document}

在此处输入图片描述

相关内容