为案例设定方程的位置

为案例设定方程的位置

我的方程有几种情况,因此我使用 dcases嵌入在alignandsplit环境中的环境。但是第一行是右对齐的。我怎样才能使第一行左对齐?

在此处输入图片描述

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align}
\begin{split}
f=(1+1+1+1)\\
\begin{dcases}
(1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1) & z\ne0\\
(2+2+2+2+2+2+2+2+2+2+2+2+2+2+2+2)& z=0\\
\end{dcases}
\end{split}
\end{align}
\end{document}

答案1

这是你想要的东西吗?我删除了分割环境,并使用了对齐嵌套方程,指定了对齐点:

    \documentclass{article}
    \usepackage{mathtools}

    \begin{document}
    \begin{equation}
     \begin{aligned}
     &\enspace f=(1+1+1+1)\\
     & \begin{dcases}
    (1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1) & z\ne0\\
    (2+2+2+2+2+2+2+2+2+2+2+2+2+2+2+2)& z=0\\
    \end{dcases}
    \end{aligned}
    \end{equation}

    \end{document} 

在此处输入图片描述

答案2

我们必须在第一行前面和 \begin{dcases} 前面设置标记。

在此处输入图片描述

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align}
\begin{split}
&f=(1+1+1+1)\\
&\begin{dcases}
(1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1) & z\ne0\\
(2+2+2+2+2+2+2+2+2+2+2+2+2+2+2+2)& z=0\\
\end{dcases}
\end{split}
\end{align}
\end{document}

相关内容