小编典典

关闭对齐括号

all

我试图关闭这个括号:

\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但现在元素未对齐:

\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}

阅读 56

收藏
2022-05-24

共1个答案

小编典典

如果您使用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}

在此处输入图像描述

2022-05-24