in reference to this post, I have a follow-up question. What I need to do is basically something like the following:
That's my attempt:
\documentclass[12pt]{article}
\usepackage[linguistics]{forest}
\usetikzlibrary{decorations.pathmorphing}
\forestset{%
/tikz/squiggly/.style={decorate, decoration={snake, amplitude=.5mm, segment length=2mm}},
wiggly/.style={edge=squiggly},
move me/.style n args=2{%
before drawing tree={%
x+=#1,
y+=#2,
},
},
}
\begin{document}
\begin{forest}
[P\textsubscript{\scshape [rel]}, move me={-150pt}{0pt}
[{\itshape bla}, wiggly, move me={200pt}{0pt}]
[D\textsubscript{\scshape [+def]}, move me={-150pt}{0pt}
[{\itshape bla}, wiggly, move me={200pt}{0pt}]
[{\itshape bla, no edge, move me={80pt}{-20pt}]
[{\itshape \textfishhookr a} <P\textsubscript{\scshape [rel]}, D\textsubscript{\scshape [+def, +fem]}>, no edge, move me={-30pt}{-40pt}]
[, phantom, calign with current]
[NP, move me={-150pt}{-15pt}
[{\hspace{2cm}}, roof, move me={-150pt}{-15pt}]
]
]
]
\end{forest}
\end{document}
But it runs into an error that I can't figure out. Any ideas?
Thanks!



{\itshape bla, no edgeby{\itshape bla}, no edge. – gernot Oct 26 '16 at 14:25tipaor some other package, that provides the symbol\textfishhookr. – gernot Oct 26 '16 at 14:33<P\textsubscript{\scshape [rel]}, D\textsubscript{\scshape [+def, +fem]}>. If you remove it, it compiles without errors. So recheck its syntax. I'm not completely sure about your intentions regarding<and>. – gernot Oct 26 '16 at 14:44