Modules of software I created produce Tikz QTree diagrams for visualisation. The problem is that some trees grow quite broad...

Even when I try to massively shrink them by Tikz settings, I cannot fit them on the page. I use the following, which has no effect:
\begin{tikzpicture}[level/.style={sibling distance=1mm/#1}]
\tikzstyle{every node}=[font=\tiny]
\tikzstyle{level 1}=[sibling distance=2mm]
\tikzstyle{level 2}=[sibling distance=2mm]
\tikzstyle{level 3}=[sibling distance=2mm]
Is there a way to further size them down or/ and another way to visualize Tikz output (like an applet or something?).
dirtree, which provides more like a directory structure. – Yiannis Lazarides Jan 3 '12 at 16:04tikz-qtreedoesn't use the levels of the standardtikztrees so setting the level distances like you have has no effect. You could try adding[grow'=right]to thetikzpictureand have the trees displayed vertically. – Alan Munn Jan 3 '12 at 16:21tikzpictureinto\resizebox{\textwidth}or suchlike solve the problem? – Stephan Lehmke Dec 1 '12 at 22:17