-1

As shown in the below screenshot, how could I type this complicated fraction for x_n in problem 5? enter image description here

1 Answers1

1

enter image description here

Try \cfrac{}{} command from amsmath package.

\documentclass{minimal}


\usepackage{amsmath}


\begin{document}

\[
    x_{n} = k_{0} +
        \cfrac{1}{k_{1} +
            \cfrac{1}{k_{2} +
                \cfrac[l]{\substack{1 \\ \vdots}}{k_{n + 1} +
                    \cfrac{1}{k_{n}}}}}
\]

\end{document}
Bill
  • 61