I am trying to draw a nice multi-dominance. I find the gap between the two lines above "V" is ugly. Is there any way to move the lower end of the line in red square so that the two lines meet at one point right north of "V"?
Thank you very much.
\documentclass{article}
\usepackage{forest}
\begin{document}
\begin{forest} where n children=0{tier=CV}{}
[\sg
[C, tier=CV]
[\mo[, tier=CV, no edge][V, name=V, tier=CV]]
[\mo, name=mo[, no edge, tier=CV]]]
\draw (mo)--(V);
\end{forest}
\end{document}
forestsolution. Instead offorest, you can also try other methods of drawing such graphs. See this question for example. If you don't mind using pstricks (I do), you can try thepst-asrpackage. This usestikz-qtree. You can also directly use the (layered) graph syntax in TikZ. – hftf Apr 15 '15 at 06:29