我正在使用该linguex
软件包进行注释。该软件包允许您用一种语言写一个句子,并在其上方添加与原始示例对齐的注释。例如:
\exg. \%*Wen$_i$ liebt$_k$ seine$_i$ Mutter t$_i$ t$_k$?\\
Whom loves his mother\\
‘Who does his mother love?’
显然,第一行和第二行的单词之间必须有直接对应关系。但是,我需要做的只是“跳过”第一行的一个单词。在下面的例子中,我需要跳过吨:
\documentclass[12pt,letterpaper]{article}
\usepackage{linguex}
\renewcommand{\firstrefdash}{}
\begin{document}
\exg. Chi pensi t verrà alla festa?
Who think.2g come.FUT.3sg a=D party
`Who do you think will come to the party?'
\end{document}
有人知道我该怎么做吗?
答案1
您可以使用一个空组:
\documentclass[12pt,letterpaper]{article}
\usepackage[utf8]{inputenc}
\usepackage{linguex}
\renewcommand{\firstrefdash}{}
\begin{document}
\exg. Chi pensi t verrà alla festa? \\
Who think.2g come.FUT.3sg a=D party \\
`Who do you think will come to the party?'
\exg. Chi pensi t verrà alla festa? \\
Who think.2g {} come.FUT.3sg a=D party \\
`Who do you think will come to the party?'
\end{document}