我正在尝试输入方程式
我尝试了以下操作,但出现错误消息:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
\left\lbrace
\begin{align*}
\textrm{$R$-bilinear maps}\\
\varphi:M\times N\to L
\end{align*}
\right\rbrace \longleftrightarrow \left\lbrace
\begin{align*}
\textrm{$R$-module homomorphisms}\\
\Phi:M\otimes_RN\to L
\end{align*}
\right\rbrace
\end{align}
\end{document}
我该如何修复它?
答案1
我会使用一个非常简单的代码:
\documentclass[11pt,a4paper]{report}
\usepackage{amsmath}
\begin{document}
\[
\begin{Bmatrix}
\textrm{$R$-bilinear maps}\\
\varphi:M\times N\to L
\end{Bmatrix}
\longleftrightarrow
\begin{Bmatrix}
\textrm{$R$-module homomorphisms}\\
\Phi:M\otimes_RN\to L
\end{Bmatrix}
\]
\end{document}
答案2
Sigur 答案的堆栈等效项,使用\braceVectorstack{}
。
\documentclass[11pt,a4paper]{report}
\usepackage{amsmath}
\usepackage[usestackEOL]{stackengine}
\stackMath
\begin{document}
\[
\braceVectorstack{
\textrm{$R$-bilinear maps}\\
\varphi:M\times N\to L
}
\longleftrightarrow
\braceVectorstack{
\textrm{$R$-module homomorphisms}\\
\Phi:M\otimes_RN\to L
}
\]
\end{document}