是否可以删除下列等式左边的括号?
\begin{equation}
a=
\begin{dcases}
1& r\geq 5,
3& \text{otherwise}
\end{dcases}
\end{equation}
答案1
使用aligned
或array
具有适当列规范的常规方法:
\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}