我怎样才能在右边而不是左边得到一个括号来对案例进行分组cases
?(我知道实际案例在左边有括号看起来更好,但我需要分组的项目实际上并不是案例。它们是算法中的一组步骤,我想将其视为一个项目。)
下面将括号放在左侧。我需要做的就是将其翻转到右侧。
\begin{align}
\begin{cases}
a&=bbb\\
c&=ddddddd\\
e&=ffffffffff
\end{cases}
\end{align}
感谢您提供的帮助!
答案1
使用包mathtools
。还有一个drcases
环境
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
\begin{rcases*}
E = m c^2 & foo \\
\int x-3\, dx & barbaz
\end{rcases*} y=f(x)
\]
\end{document}
答案2
借助aligned
来自的环境amsmath
,您可以定义自己的环境:
\documentclass{article}
\usepackage{amsmath}
\newenvironment{rcases}
{\left.\begin{aligned}}
{\end{aligned}\right\rbrace}
\begin{document}
\begin{equation*}
\begin{rcases}
a &= b + c \\
d &= e + f + g \\
h &= i + j + k + l
\end{rcases}
\text{ three equations}
\end{equation*}
\end{document}