我正在尝试做类似的事情,但我不知道如何创建 [+silábico] 或以相同的高度组织“NUC”。谢谢!!
这是我使用的方法:(我尝试过“[{[-silábico]},在绘制 Vocálico={y=-1.0cm,x=0.8cm},anchor= south west]”但没有起作用 :/)。
\documentclass[12 pt, a4paper, doubleside]{article}%showtrims
\usepackage[top=3cm, bottom=2cm, left=3cm, right=2cm]{geometry}
\usepackage{forest}
\usepackage{phonrule}
\usepackage[brazil]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[left,modulo]{lineno}
\usepackage{multicol,textcomp,amsmath,amssymb}
\usepackage{textcase,graphicx,lastpage,covington}
\usepackage[makeindex,split]{splitidx}
\usepackage[tone,extra]{tipa}
\usepackage{tikz}
\usepackage{tikz-qtree}
\usepackage{mathtools}
\begin{document}
\begin{forest}
[Nuc
[x
[Raiz
[Vocálico
[Altura
[\textsc{[+{alto}]}
% [{[+recuado]}
]
]
]
]
]
]
]
\end{forest} \hspace{0.4cm}
\begin{forest}
[\textsc{[+{ac}]}
[Nuc
[x
[Raiz
]
]
]
]
\end{forest} \hspace{0.2cm} $\rightarrow$ \hspace{0.2cm}
\begin{forest}
[Nuc
[x
[Raiz
]
]
]
\end{forest} \hspace{0.4cm}
\begin{forest}
[\textsc{[+{ac}]}
[Nuc
[x
[Raiz
]
]
]
]
\end{forest}
\end{document}
预期输出
答案1
尽管我非常喜欢森林,并且一直对它的强大功能感到震惊,但在这种情况下,我想说使用其他工具更容易。一种可以说是相当简单的方法就是使用tikz-cd
它。
\documentclass[12 pt, a4paper, doubleside]{article}%showtrims
\usepackage[top=3cm, bottom=2cm, left=3cm, right=2cm]{geometry}
\usepackage{mathtools}
\usepackage{tikz-cd}
\begin{document}
\begin{tikzcd}[column sep=1mm,
/tikz/column 4/.append style={column sep=0.7cm}]
& & {[+\text{ac}]}\arrow[d,dash] & & & & {[+\text{ac}]}\arrow[d,dash] &\\
\text{x}\arrow[d,dash] & & \text{x}\arrow[d,dash] & &
\text{x}\arrow[d,dash,"="below=-2pt] & & \text{x}\arrow[d,dash] & \\
\text{Nuc}\arrow[d,dash] & & \text{Nuc}\arrow[d,dash] & &
\text{Nuc}\arrow[d,dash] & & \text{Nuc}\arrow[d,dash] & \\
\text{Raiz}\arrow[r,dash]\arrow[d,dash] & {[+\text{recuado}]} &
\text{Raiz}\arrow[r,dash] & {[+\text{recuado}]} \arrow[r,Rightarrow]&
\text{Raiz}\arrow[r,dash] & {[+\text{recuado}]} &
\text{Raiz}\arrow[r,dash] & {[+\text{recuado}]}\\
\text{Voc\'alico}\arrow[d,dash] & & & & & & & \\
\text{Altura}\arrow[d,dash] & & & & & & & \\
{[+\text{alto}]} & & & & & & & \\
\end{tikzcd}
\end{document}