如何使用 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
。
aligned
在内部使用equation
;- 不需要时
\left
请勿使用;\right
- 注意
\dots
而不是\ldots
; - 检查双下标。
\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}