边界(使用数字大小写)朝外朝右

边界(使用数字大小写)朝外朝右

我有以下代码:

\begin{numcases}{text}{\hat{\alpha}_{j}\,=\,}
  2 \pi R\bigl[q_x-p_x,q_y-p_y\bigr] \\
  0 
\end{numcases}

我怎样才能改变它以便得到类似这样的内容(不是代码):

2 \pi R\bigl[q_x-p_x,q_y-p_y\bigr]     } text   
0 

换句话说,我怎样才能改变“{”的位置以面向这个方向“}”

谢谢,

答案1

还有rcases来自mathtools

\documentclass{article}
\usepackage{mathtools}

\begin{document}

\[
\begin{rcases}
2 πR\bigl[q_x-p_x,q_y-p_y\bigr] \\
0
\end{rcases} = x
\]

\end{document}

在此处输入图片描述

答案2

您应该使用empheq,而不是cases

\documentclass{article}
\usepackage{empheq}

\begin{document}

\begin{empheq}[right={\empheqrbrace =x}]{align}
&a\\
&b
\end{empheq}

\end{document}

在此处输入图片描述

答案3

使用 empheq,您可以通过三种方式对齐公式。使用 选项overload,您可以使用更简单的语法:AMS 环境接受可选参数。缺点是它们不再可以跨页拆分,但仍可以使用 、等环境返回原始版本。要获得与 中相同的子编号AmSalign,您可以将这些环境嵌套在一个环境中。AmSgathernumcasessubequations

以下是 3 种可能性的演示:

\documentclass{article}
\usepackage[overload]{empheq}

\begin{document}

\begin{subequations}
\begin{align}[right={\empheqrbrace =x}]
 2 π R\bigl[q_x-p_x,q_y-p_y\bigr] \\
 0
\end{align}
\end{subequations}
\medskip
\begin{subequations}
\begin{align}[right={\empheqrbrace =x}]
 & 2 π R\bigl[q_x-p_x,q_y-p_y\bigr] \\
 & 0
\end{align}

\end{subequations}
\medskip
\begin{subequations}
\begin{gather}[right={\empheqrbrace =x}]
 2 π R\bigl[q_x-p_x,q_y-p_y\bigr] \\
  0
\end{gather}
\end{subequations}
\end{document}

在此处输入图片描述G

答案4

\documentclass{article}
\usepackage{empheq}
\begin{document}
\begin{empheq}[right={\empheqrbrace=\text{text}}]{align}
  &\hat{\alpha}_{j}=2 \pi R\bigl[q_x-p_x,q_y-p_y\bigr] \\
  &0 
\end{empheq}
\end{document}

在此处输入图片描述

相关内容