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:
¿Cómo puedo trazar una línea entre la segunda sigma y la "t"?
¡Gracias!
Respuesta1
Ponga el \draw
comando 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}