有没有办法让四行光泽的第一行没有光泽对齐间距?

有没有办法让四行光泽的第一行没有光泽对齐间距?

我想知道是否有办法使四行行间注释中的第一行不符合注释对齐/注释间距。

\documentclass[12pt]{article}
\usepackage{gb4e,cgloss}
\usepackage{leipzig}

\begin{document}

\begin{exe}
\ex \label{label}\glll awúuassshiichih \\
awuua- ss- shiichi -h \\
inside.{\Noun}- {\Goal}- throw -{\Imp} \\
\glt `Throw it in [the] inside! [of the hoop]' %\citation
\end{exe}

\end{document}

四行中的第一行只是所考察语言中的示例。因此,我不需要它与下面的间距对齐。

但是,第一行的单词 (/awúuassshiichih/) 与第二行和第三行的第一个单词对齐。这没有问题,但会导致第二行和第三行的第二个单词被推到 (/awúuassshiichih/) 的末尾。

有什么方法可以避免这种情况吗?

我正在使用 TeXMaker、MacTeX2020 和 MacOS 的最新更新。

先感谢您!

答案1

最简单的解决方法是不要使用三行注释,而是使用两行注释,并用简单的注释\\结束第一行。我已调整您的代码,使其可编译。

\documentclass[12pt]{article}

\usepackage{leipzig}
\usepackage{gb4e,cgloss}

\newleipzig{noun}{n}{noun}
\newleipzig{goal}{go}{goal}

\begin{document}
\begin{exe}
\ex \label{label}
awúuassshiichih\\
\gll awuua- ss- shiichi -h \\
inside.{\Noun}- {\Goal}- throw -{\Imp} \\
\glt `Throw it in [the] inside! [of the hoop]' %\citation
\end{exe}

\end{document}

代码输出

相关内容