答案1
方程式可以与显示的方程式 (包) 分组gathered
或在显示方程式内:aligned
amsmath
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{gathered}
T[\phi_i] \rightarrow T[\phi]\\
\text{as } i \rightarrow \infty
\end{gathered}
\quad\Longleftrightarrow\quad
\begin{gathered}
T[\vartheta] \text{ in somewhere}\\
\forall \vartheta \in \mathcal{D}_0(\mathcal{U})
\text{ bounded on } \mathcal{D}_0(\mathcal{U})
\end{gathered}
\]
\end{document}
答案2
无数种可能性中的两种。
\documentclass{article}
\usepackage{amsmath,mathrsfs}
\begin{document}
\[
\left.\begin{array}{rcl}
T[\phi_i] & \to& T[\phi]\\
\text{as}~i& \to & \infty
\end{array}\right\}
\Longleftrightarrow
\left\{\begin{array}{l}
\text{$T$ is bounded}\\
\forall\vartheta\in\mathscr{D}_0(U)~\text{bounded on}~\mathscr{D}_0(U)
\end{array}\right.
\]
or
\[
T[\phi_i] \xrightarrow{i\to\infty} T[\phi]\quad
\Longleftrightarrow
\begin{cases}
\text{$T$ is bounded}\\
\forall\vartheta\in\mathscr{D}_0(U)~\text{bounded on}~\mathscr{D}_0(U)
\end{cases}
\]
\end{document}
答案3
我建议使用aligned
来更好地控制两行之间的对齐。在左半部分,我们有两个\rightarrow
可以对齐的 s;在右半部分,我们也可以有两个\in
可以对齐的 s。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{aligned}
T[\phi_i] & \rightarrow T[\phi]\\
\text{as } i & \rightarrow \infty
\end{aligned}
\quad\Longleftrightarrow\quad
\begin{aligned}
&T[\vartheta] \text{ in somewhere}\\
&\forall\vartheta\in\mathcal{D}_0(\mathcal{U}) \text{ bounded on } \mathcal{D}_0(\mathcal{U})
\end{aligned}
\]
\end{document}