删除 dcase 左侧的括号

删除 dcase 左侧的括号

是否可以删除下列等式左边的括号?

\begin{equation}
  a=
    \begin{dcases}
     1& r\geq 5,
     3& \text{otherwise}
    \end{dcases}
\end{equation}

答案1

使用alignedarray具有适当列规范的常规方法:

在此处输入图片描述

\documentclass{article}

\usepackage{mathtools}

\begin{document}

\begin{equation}
  a =
    \begin{dcases}
      1 & r \geq 5, \\
      3 & \text{otherwise}
    \end{dcases}
  \qquad
  b = 
    \begin{array}{ @{} r l @{} }
      1 & r \geq 5, \\[\jot]
      3 & \text{otherwise}
    \end{array}
  \qquad
  c = 
    \begin{aligned}
      1 \quad & r \geq 5, \\
      3 \quad & \text{otherwise}
    \end{aligned}
\end{equation}

\end{document}

array\textstyle默认设置其内容。\displaystyle如果需要,也可以将垂直间隙调整\\[\jot]为更大的倍数。

答案2

您可以轻松地做到这一点,但您的读者不会高兴。

\documentclass{article}
\usepackage{mathtools}

\makeatletter
\newcases{nocases}
  {\quad}
  {$\m@th\displaystyle{##}$\hfil}
  {$\m@th\displaystyle{##}$\hfil}
  {.}{.}
\makeatother

\begin{document}
\begin{equation}
  a=
    \begin{nocases}
     1& r\geq 5, \\
     3& \text{otherwise}
    \end{nocases}
\qquad
  a=
    \begin{dcases}
     1& r\geq 5, \\
     3& \text{otherwise}
    \end{dcases}
\end{equation}
\end{document}

在此处输入图片描述

相关内容