在 Overleaf 中递归输入序列

在 Overleaf 中递归输入序列

我正在尝试在 Overleaf 上递归输入以下序列,但我不确定如何将其格式化为如下所示的格式。更具体地说,我需要有关如何在左括号后输入信息的帮助。

在此处输入图片描述

答案1

cases你可以使用以下方式定义一种新类型mathtools

\documentclass{article}
\usepackage{mathtools}

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

\begin{document}

\[
a_{n}=
\begin{centercases}
  1         & n=1 \\
  a_{n-1}+4 & n>1
\end{centercases}
\]

\end{document}

在此处输入图片描述

然而,使用以下命令获取的输出cases更常用:

在此处输入图片描述

相关内容