I have a problem with a very large tree. What I woul like to do is moving the first node (1 NP) to the left to give more room for the others. The second node V_e1 dominating er could also go to the left. The Adj node could even go into the area of the Det node. Is this possible?
\documentclass{minimal}
\usepackage{graphicx,tikz-qtree}
\newcommand{\relliste}[1]{%
\mbox{%
$%
%
\left\langle \textrm{#1} \right\rangle%
$%
}%
}
\newcommand{\feattab}[1]{[\begin{tabular}[t]{@{}l@{}}#1 ]\end{tabular}}
\newcommand{\eliste}{%
\mbox{%
$\left\langle\right\rangle$}%
}
\begin{document}
\resizebox{\linewidth}{!}{%
\begin{tikzpicture}
\tikzset{level 1/.style={level distance=8\baselineskip}}%
\tikzset{level 2/.style={level distance=8\baselineskip}}%
\tikzset{level 3/.style={level distance=8\baselineskip}}%
\tikzset{level 4+/.style={level distance=6\baselineskip}}%
\tikzset{frontier/.style={distance from root=40\baselineskip}}%
\Tree[.{V$_{e1}$\feattab{
SPR \relliste{ },\\
COMPS \eliste\\
RELS \relliste{ h4:present(e1, h5), h5:eaqual\_rel(e1, x, y), h6:some(y, h7, h8), h9:smart(e2, y), h9:man(y) },\\
HCONS \relliste{ h7 $=_q$ h9 } }}
[.{{1} NP\feattab{
RELS \relliste{ },\\
HCONS \relliste{ } }} han ]
[.{V$_{e1}$\feattab{
SPR \relliste{ {1} },\\
COMPS \eliste\\
RELS \relliste{ h4:present(e1, h5), h5:equal\_rel(e, x, y), h6:some(y, h7, h8), h9:smart(e2, y), h9:man(y) },\\
HCONS \relliste{ h7 $=_q$ h9 } }}
[.{V$_{e1}$\feattab{
SPR \relliste{ {1} },\\
COMPS \relliste{ {2} },\\
RELS \relliste{ h4:present(e1, h5) },\\
HCONS \eliste }} \edge node[auto=left]{Inflectional LR};
[.{V$_e$\feattab{
SPR \relliste{ {1} },\\
COMPS \relliste{ {2} },\\
RELS \eliste,\\
HCONS \eliste }} er ] ]
[.{{2} NP$_{e1}$\feattab{
head|subj \relliste{ {1} NP$_x$ },\\
SPR \eliste,\\
RELS \relliste{ h5:equal\_rel(e1, x, y), h6:some(y, h7, h8), h9:smart(e2, y), h9:man(y) },\\
HCONS \relliste{ h7 $=_q$ h9 } }}
[.{NP$_y$\feattab{
SPR \eliste,\\
RELS \relliste{ h6:some(y, h7, h8), h9:smart(e2, y), h9:man(y) },\\
HCONS \relliste{ h7 $=_q$ h9 } }}
[.{{3} Det\feattab{
RELS \relliste{ h6:some(y, h7, h8) },\\
HCONS \relliste{ h7 $=_q$ h9 } }} en ]
[.{N$_y$\feattab{
SPR \relliste{ {3} }\\
RELS \relliste{ h9:smart(e2, y), h9:man(y) },\\
HCONS \eliste }}
[.{Adj\feattab{
RELS \relliste{ h9:smart(e2, y) },\\
HCONS \eliste }} klog ]
[.{N$_y$\feattab{
RELS \relliste{ h9:man(y) },\\
HCONS \eliste }} mand ] ] ]
]
]
]
\end{tikzpicture}}
\end{document}
