答案1
如果要增加所有dcases
环境的间距,可以使用\renewcases
命令mathtools
。这是一个极端的例子:
\documentclass{article}
\usepackage{mathtools}
\makeatletter
\renewcases{dcases}{\,}{%
$\m@th\displaystyle{##}$\hfil}{$\m@th\displaystyle{##}$\hfil}{\lbrace\qquad}{.}
\makeatother
\begin{document}
\[ \frac{\partial f(x)}{\partial L_1} =
\begin{dcases}
\frac{1}{\rho } - 1, \quad & x<L_1 \\
0, \quad & \text{otherwise.}
\end{dcases} \]
\end{document}