如何并排输入两个语句并在它们之间添加 iff

如何并排输入两个语句并在它们之间添加 iff

您好,我想知道是否有办法排版两个带有方程式的文本块,并且在它们之间有一个iff?(如图所示,抱歉图片质量不好!)

答案1

方程式可以与显示的方程式 (包) 分组gathered或在显示方程式内:alignedamsmath

\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}

在此处输入图片描述

相关内容