答案1
以下是您当前设置的两种替代方案:
将构造放入另一个构造内
array
。而是使用
cases
不同的布局。
\documentclass{article}
\usepackage{amsmath,mathrsfs}
\begin{document}
\[
\mathscr F = \left\{
\begin{array}{@{} l @{}}
\{B_{\alpha}\}_{\alpha\in J}:
\begin{array}[t]{r @{~} l}
\textit{i}) & B_{\alpha} \text{ are open}\\
\textit{ii}) & \{B_{\alpha}\} \text{ is finitely inadequate}\\
\textit{iii}) & I \subset J \text{ and } A_{\alpha}=B_{\alpha} \text{ whenever } \alpha\in I
\end{array}
\end{array}
\right\}
\]
\[
\mathscr F =
\{B_{\alpha}\}_{\alpha\in J}:
\begin{cases}
\textit{i}) & B_{\alpha} \text{ are open}\\
\textit{ii}) & \{B_{\alpha}\} \text{ is finitely inadequate}\\
\textit{iii}) & I \subset J \text{ and } A_{\alpha}=B_{\alpha} \text{ whenever } \alpha\in I
\end{cases}
\]
\end{document}
答案2
我提出了另外两种变体,基于 Bmatrix
,\parbox
以及排队枚举环境:
\documentclass{article}
\usepackage{amsmath,mathrsfs}
\usepackage[inline]{enumitem}
\begin{document}
\[
\mathscr F =
\begin{Bmatrix}
\{B_{\alpha}\}_{\alpha\in J}:\:
\parbox{75mm}{%
\begin{enumerate*}[label =$ \roman*) $, itemjoin ={; \enspace}]
\item $ B_{\alpha} $ are open
\item $ \{B_{\alpha}\} $ is finitely inadequate
\item$ I \subset J $ and $ A_{\alpha}=B_{\alpha} $ whenever $ \alpha\in I $.
\end{enumerate*}}
\end{Bmatrix}
\]
\[
\mathscr F =
\begin{Bmatrix}
\{B_{\alpha}\}_{\alpha\in J}:\;
\parbox[t]{75mm}{%
\begin{enumerate*}[label =$ \roman*) $, itemjoin ={; \enspace}]
\item $ B_{\alpha} $ are open
\item $ \{B_{\alpha}\} $ is finitely inadequate
\item$ I \subset J $ and $ A_{\alpha}=B_{\alpha} $ whenever $\alpha\in I$.
\end{enumerate*}}
\end{Bmatrix}
\]
\end{document}