如何在多行文本中插入大花括号?

如何在多行文本中插入大花括号?

我尝试用花括号将多行文本分组,并使文本位于括号右侧的中心:

在此处输入图片描述

我当前的 MWE 不包括括号。

\documentclass{article}

\begin{document}

\noindent a\\
b $\quad\longrightarrow$ d\\
c\\

\end{document}

如何插入括号,同时确保可以在括号右侧输入垂直居中的文本?

答案1

请尝试:

\documentclass{book}
\usepackage{mathtools}
\begin{document}

\[
\begin{rcases}
\mathrm{a}\\
\mathrm{b}\\
\mathrm{c}
\end{rcases}\longrightarrow \mathrm{d}
\]

\end{document}

在此处输入图片描述

答案2

也可以使用简单数组(方程式之间有垂直空格[.5ex])来创建 MWE。

\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\[ 
\left.\begin{array}{r} 
\textnormal{a}\\[.5ex]
\textnormal{b}\\[.5ex]
\textnormal{c}
\end{array} \right\} 
\longrightarrow \textnormal{d}
\]
\end{document} 
   

下面是输出:

在此处输入图片描述

相关内容