我使用forest
包来绘制语言树,使用linguex
包来创建数字示例。但是当我将两者结合起来时似乎出现了问题。树与示例的数字不一致(XP 应该与 (1) 对齐)。
\documentclass{article}
\usepackage{forest}
\usepackage{linguex}
\begin{document}
\ex. \begin{forest}
[XP [X] [compl ] ]
\end{forest}
\end{document}
如果我使用philex
包而不是linguex
,结果完全相同。所以问题似乎出在forest
包上。有人知道如何解决这个问题吗?
答案1
如果你希望树以第一个项目的基线为根,那么手册中的第 2.4.1 节forest
说
\documentclass{article}
\usepackage{forest}
\usepackage{linguex}
\begin{document}
\ex. \begin{forest} baseline
[XP [X] [compl ] ]
\end{forest}
\end{document}