花括号内的多行居中文本

花括号内的多行居中文本

我想要几块居中的文本和数学块,放在成对的高大括号内,并通过箭头连接起来,类似于下图。

花括号对应关系

我怎样才能实现这个目标?

答案1

你可以使用parbox

Mathematica 图形

\documentclass{article}
\usepackage{amsmath}
\usepackage[margin=2in]{geometry}    
\begin{document}

\begin{align}
   \aleph : \left\{ \parbox[c]{1.1in}{\centering
                       Nash components\\with respect to X}
            \right\}
            \rightarrow
            \left\{ \parbox[c]{1.1in}{\centering
                       essential divisors\\over X}
            \right\}
\end{align}
is the \itshape{Nash map}.
\end{document}

相关内容