I'm using the xytree package to draw autosegmental diagrams. The xytree package utilizes xypic for its functions.
What I want to do is place labels on the linking lines between different tiers. This is described in sections 1.4 and/or 2.9 of the xypic docmentation (specifically I want to be able to "delink" tiers as described in section 4.4 here: http://wiki.lyx.org/LyX/LinguistLyX#toc10).
Using the code in the above link I can do this in an xymatrix, but can't figure out how to transfer this to to the xytree autosegmental diagram.
The nub of the problem is I don't know how xytree uses xypic to make autosegmental diagrams; I just copied example code and extrapolated.
Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage{xytree}
\begin{document}
{\xy
<0pt,0pt>*\asrnode{k}="k",
<1em,0pt>*\asrnode{a}="a",
<2em,0pt>*\asrnode{t}="t",
<0pt,1cm>*\asrnode{$\times$}="x1",
<1em,1cm>*\asrnode{$\times$}="x2",
<2em,1cm>*\asrnode{$\times$}="x3",
<.5em,2cm>*\asrnode{$\mu$}="m1",
<2em,2cm>*\asrnode{$\mu$}="m2",
"k"+U;"x1"+D**\dir{-};
"a"+U;"x2"+D**\dir{-};
"t"+U;"x3"+D**\dir{-};
"x1"+U;"m1"+D**\dir{-};
"x2"+U;"m1"+D**\dir{-};
"x3"+U;"m2"+D**\dir{-};
\endxy}
%The vertical line on the right of this diagram has a =
%which I want to be able to put on the diagram above.
\xymatrix{
V\ar@{-}[d]& C & V\ar@{--}[dll]\ar@{-}[d]|=\\
H & & L
}
\end{document}