我试图关闭这个括号:
\frac{}{}\theta=2\pi k + \begin{cases}\arctan\left ( \frac{n}{x} \right ) & \text{ if } x> 0 \\ \frac{\pi }{2} & \text{ if } x=0 \\ \arctan\left ( \frac{n}{x} \right )+\pi & \text{ if } x< 0 \end{cases}\
(我这里不知道怎么写Latex,去https://latex.codecogs.com/eqneditor/editor.php)
\documentclass{article} \usepackage{amsmath} \begin{document} \[ \frac{}{}\theta=2\pi k + \begin{cases}\arctan\left ( \frac{n}{x} \right ) & \text{ if } x> 0 \\ \frac{\pi }{2} & \text{ if } x=0 \\ \arctan\left ( \frac{n}{x} \right )+\pi & \text{ if } x< 0 \end{cases} \] \end{document}
我尝试使用Bmatrixintead ofcases但现在元素未对齐:
Bmatrix
cases
\frac{}{}\theta=2\pi k + \begin{Bmatrix}\arctan\left ( \frac{n}{x} \right ) & \text{ if } x> 0 \\ \frac{\pi }{2} & \text{ if } x=0 \\ \arctan\left ( \frac{n}{x} \right )+\pi & \text{ if } x< 0 \end{Bmatrix}
如果您使用Bmatrix*来自 的环境,我可以工作mathtools,它采用可选参数进行对齐(每列相同):
Bmatrix*
mathtools
\documentclass{article} \usepackage{mathtools} \begin{document} \[ \frac{}{}\theta=2\pi k + \begin{Bmatrix*}[l]\arctan\left ( \frac{n}{x} \right ) & \text{ if } x> 0 \\ \frac{\pi }{2} & \text{ if } x=0 \\ \arctan\left ( \frac{n}{x} \right )+\pi & \text{ if } x< 0 \end{Bmatrix*} \]% \end{document}