Árboles fonológicos: geminación consonántica en tikz-qtree

Árboles fonológicos: geminación consonántica en tikz-qtree

Soy nuevo en esto. Estoy haciendo árboles fonológicos.

Tengo el siguiente código:

\documentclass{article}

\usepackage{tikz}
\usepackage{tikz-qtree}
\usepackage{tipa}

\begin{document}

\begin{tikzpicture}[baseline]
\tikzset{frontier/.style={distance from root=100pt}}
\Tree
[.$\omega$
[.$\sigma$ k [.$\mu$ i ] [.$\mu$ \node(a){t}; ] ]
[.\node(b){$\sigma$};  [.$\mu$ e ] ] ]
\end{tikzpicture}
\end{document}

\draw (b.south) -- (a.north);

\end{document}

Quiero poder conectar la segunda sigma con la tercera letra "t". Intenté hacer de la "t" un nodo y el segundo "sigma" un nodo y luego dibujar una línea entre ellos, pero me dio esto:

ingrese la descripción de la imagen aquí

¿Cómo puedo trazar una línea entre la segunda sigma y la "t"?

¡Gracias!

Respuesta1

Ponga el \drawcomando dentro de tikzpicture?

\documentclass{article}

\usepackage{tikz}
\usepackage{tikz-qtree}
\usepackage{tipa}

\begin{document}

\begin{tikzpicture}[baseline]
\tikzset{frontier/.style={distance from root=100pt}}
\Tree
[.$\omega$
[.$\sigma$ k [.$\mu$ i ] [.$\mu$ \node(a){t}; ] ]
[.\node(b){$\sigma$};  [.$\mu$ e ] ] ]
\draw (b.south) -- (a.north);
\end{tikzpicture}
\end{document}

ingrese la descripción de la imagen aquí

información relacionada