[Tex/LaTex] hspace doesn’t work. Depth

line-breaking

I need to locate my text in such way.
At first, I have some formula. There must be a little indent.

$bla-bla-bla$ \\

Then I have another formula, but the indent must be bigger.

   $bla-bla-bla$ \linebreak

An so on. It looks like the depth of the recursion.

   $bla-bla-bla$ \\ 

      $bla-bla-bla$ \\

          $bla-bla-bla$ \\

   $bla-bla-bla$  \\

   $bla-bla-bla$  \\

        $bla-bla-bla$  \\

        $bla-bla-bla$   \\

How can I do it? I try to use \hspace, but it works only at the beginning.

Best Answer

If you need it once or twice, you can stay with something like the following. The empty \hbox makes sure that the following skip (\quad in this case) is not ignored.

\documentclass{article}

\begin{document}

\noindent
$f(4)=f(3)+f(2)=5$
\\\hbox{}
\quad $f(3)=f(2)+f(1)=3$
\\\hbox{}
\quad\quad $f(2)=f(1)+f(0)=2$
\\\hbox{}
\quad\quad\quad $f(1)=1$
\\\hbox{}
\quad\quad\quad $f(0)=1$
\\\hbox{}
\quad\quad $f(1)=0$
\\\hbox{}
\quad $f(2)=f(1)+f(0)=2$
\\\hbox{}
\quad\quad $f(1)=1$
\\\hbox{}
\quad\quad $f(0)=1$

\end{document}