如何在使用 Linguex 注释时“跳过”一个单词

如何在使用 Linguex 注释时“跳过”一个单词

我正在使用该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}

在此处输入图片描述

相关内容