add tag
निरंजन
I have currently figured out how to increase or decrease the depth of all the branches from a node like in the following example -

```
\documentclass[border=0.5cm]{standalone}
\usepackage[edges]{forest}

\begin{document}
	\begin{forest}
		forked edges,
		[First
		[Second]
		[Third,l sep=3\baselineskip
		[Fourth]
		[Fifth]
		]
		]
	\end{forest}
\end{document}
```

I want to increase the depth of the fifth node only, but writing `l sep=3\baselineskip` after [Fifth] doesn't work. So my question is how to have two branches with different heights in the same node?
Top Answer
samcarter
You can use `l=...` to set the level distance of individual nodes.

```
\documentclass[border=0.5cm]{standalone}
\usepackage[edges]{forest}

\begin{document}
  \begin{forest}
    forked edges,
    [
      First
      [Second]
      [Third
        [Fourth]
        [Fifth,l=3\baselineskip]
      ]
    ]
  \end{forest}
\end{document}
```

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.