following on from previous question
Example Problem:
\documentclass[margin=3mm]{standalone}%
\usepackage{forest}
\usetikzlibrary{positioning}
\begin{document}
\begin{forest}
for tree={
inner xsep=0pt,
s sep=9mm,
l sep=7mm}
[VP
[DP]
[V'
[A, name=a]
[DP]
]
]
\begin{scope}[inner xsep=0pt, node distance=7mm and 0mm]
\node (b) [right=of a] {B};
\node (c) [right=of b] {C};
\node (x) [below=of c] {XXX};
\draw (c) -- (x);
\end{scope}
\end{forest}
\end{document}
XXX is now below ABC but if I want to do these sort of rearrangements at multiple levels (e.g. XXX now should point to the 1 in 123 in a node at a level below, and the 3 then points to node below it, can I do it in forest, or do I need to manually build the tree in tikz?



growdirection on the way as detailed on p. 42 of the forest manual. Of course, you can completely change the layout, but then I guess the OP needs to slightly rephrase the question. – Jun 15 '18 at 17:51