I'm using the qtree package in LaTeX, but the tree nodes have very small text. I'm also using \scalebox to scale down the tree since it does not fit in the page.
Is there a way to increase the size of the text while keeping the tree small? I tried qtreeinithook with \Large but without any luck, since the text is still not big enough.
Edit: so, the problem is related to the template I'm using from here ftp://ftp.cup.cam.ac.uk/pub/texarchive/journals/latex/tlp-cls/unpacked/tlp.cls
\documentclass[conference]{tlp}
\usepackage{qtree}
\begin{document}
\Tree [.A [ a b c d ].B !\qsetw{1cm} C ]
\newcommand\qlabelhook{\Huge}
\newcommand\qleafhook{\Huge}
\Tree [.A [ a b c d ].B !\qsetw{1cm} C ]
\end{document}
With this code, the edges of the tree get so big that the tree does not fit in the page. I guess the problem is with the template.


`to mark your inline code as I did in my edit. – doncherry Mar 17 '12 at 22:57