我如何按照以下格式输入方程式?
\usepackage{amsmath}
\usepackage{cases}
\begin{document}
% without labels for different case which I need
\begin{align*}
A & \Longrightarrow B \tag{1} \\
& \Longrightarrow
\begin{cases}
G_{11}=G^{t} &z \in C_1, z' \in C_1 \\
G_{12}=G^{<} &z \in C_1, z' \in C_2 \\
G_{13}=G^{\rceil} &z \in C_1, z' \in C_3
\end{cases}
\end{align*}
% another unsucessful try
\begin{align*}
A & \Longrightarrow B \tag{1} \\
& \Longrightarrow
\begin{numcases}{}
c\\
d\\
e
\end{numcases}
\end{align*}
end{document}
答案1
非常脏,不雅观。不能使用;-)
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{alignat}{2}
a &\to{} &b \\
&&c \\
&\to{}&\smash{\left\{\begin{array}{@{}c@{}} \mathstrut \\ \mathstrut \\ \mathstrut \end{array}\right.} d \\
&&e
\end{alignat}
\end{document}
解释:{alignat}{2}
制作两对rl
列,因此它基本上相当于一个rlrl
对齐的数组。在第一个右对齐的列中,我放了a
;在第二个左对齐的列中放了两个箭头;在第三个右对齐的列中放了括号和其他字母;第四列是空的。