答案1
对于显示的示例,您不需要任何特殊的括号:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
(f \text{ continuous}) \Leftrightarrow
\begin{pmatrix}
\forall f(x) \in X\ \forall V\ni f(x) \\
\exists U \ni x \text{ such that } f(U)\subset C
\end{pmatrix}
\]
\end{document}
有关数学写作的更多信息,请参阅wiki/LaTeX/数学,高等数学,教程/amsmathETC。
答案2
答案3
答案4
结构gathered
来自amsmath
是下面的主要成分,括号内由 提供\left(...\right)
。还请注意量词的正确间距,如https://tex.stackexchange.com/a/115451/15925
\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator{\Exists}{\exists}
\DeclareMathOperator{\Forall}{\forall}
\begin{document}
\begin{equation*}
(f\ \text{continuous})
\iff
\left(
\begin{gathered}
\Forall f(x) \in X \quad \Forall V\ni f(x) \\
\Exists U \ni x\ \text{such that}\ f(U)\subset C
\end{gathered}
\right)
\end{equation*}
\end{document}