答案1
您可以\vtop
在 的左侧使用原始元素\cases
,例如在 Plain TeX 中:
$$
\vtop{\hsize=2cm \leftskip=0pt plus 2fil
\noindent some text text}
\cases {a\cr b\cr c}
$$
\bye
答案2
根据我的评论,重现给出的例子。
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{equation}
\parbox[t]{0.7in}{\centering some text text}
\begin{cases} a\\ b\\ c \end{cases}
\end{equation}
\begin{equation}
\begin{tabular}[t]{c}
some text\\
text
\end{tabular}
\begin{cases} a\\ b\\ c \end{cases}
\end{equation}
\end{document}