How can I change the scale of a tree made with the forestpackage? I work with beamer, and sometimes my trees are a bit too wide, so they finish after the limit of the frame :
\documentclass{beamer}
\usepackage{forest, philex}
\begin{document}
\begin{frame}{Mise en pratique}
\begin{exampleblock}{}
Comment représenter la structure suivante :
\end{exampleblock}
\lb{}{
\lba{}{J'ai [vu un âne gris dans le clocher].}
\lbb{}{[vu [un [âne [gris] ] ] [dans [le [clocher] ] ] ]}
\lbz{}{
\begin{forest} baseline, for tree={parent anchor=south, calign=first}
[VP
[VP
[V\\\textit{vu}, align=center, base=top]
[DP
[D\\\textit{un}, align=center, base=top]
[NP
[N\\\textit{âne}, align=center, base=top]
[AP [A\\\textit{gris}, align=center, base=top]]
]
]
]
[PP
[P\\\textit{dans}, align=center, base=top]
[DP
[D\\\textit{le}, align=center, base=top]
[NP
[N\\\textit{clocher}, align=center, base=top]
]
]
]
]
\end{forest}}}
\end{frame}
\end{document}
With tikz-qtree, the option [scale=.8] was available, but it doesn't seem to work with forest. Any idea?


\footnotesizejust before\begin{forest}. – Torbjørn T. Apr 02 '14 at 13:54