为什么我无法在 LaTeX 中成功编写分段函数?

为什么我无法在 LaTeX 中成功编写分段函数?
\documentclass{article}
\begin{document}
\begin{equation}
\begin{aligned} 
 S(t) & =
\begin{cases}
C_0 + N_0(x_0)\cdot B \cdot a_{x_0}\cdot (1 + l_P) & t= 0\\
\hat{S}(t) - B \cdot N_0(x_0+t)  & t= 1,2,\cdots
\end{cases}.\\
\end{aligned}
\end{equation}
\end{document}

存在错误,输出为 在此处输入图片描述

我想要这样的输出:

在此处输入图片描述

答案1

您可以使用该amsmath包,也可以按如下方式执行:

\documentclass{article}
\begin{document}
\[S(t)=\left\{\begin{array}{ll}
                C_0 + N_0(x_0)\cdot B \cdot a_{x_0}\cdot (1 + l_P) & t= 0\\
                \hat{S}(t) - B \cdot N_0(x_0+t)  & t= 1,2,\cdots
              \end{array}\right.\]
\end{document}

第二个选项会给你以下结果:

在此处输入图片描述

相关内容