單行距在 GB4E 翻譯行中不起作用

單行距在 GB4E 翻譯行中不起作用

我有一個文檔,正文中的間距必須至少為 1.5。我正在使用該gb4e套件來註釋數百個語言範例。有時,這些範例的翻譯最終會變成多行。這是一個 MWE:

\documentclass{article}
\usepackage{graphicx} % Required for inserting images
\usepackage{setspace}
\usepackage{gb4e}
\title{test}
\date{December 2023}

\begin{document}

\maketitle
\doublespacing
\section{Introduction}
        \begin{exe}
        \ex
        \begin{footnotesize}
        \gll  jekk asdas mniuuya mluy kju ddwqe, \textbf{sh-z-vuu} juuil kju ssa-mqwcx-e \\
              {there} {both} {never.\textsc{1pl.3sg}} {we} Kew Dwek, \textsc{fut}-jump-\textsc{1.pl} again Kew \textsc{fut}-sleep-\textsc{3.sg}.\\
              
        \trans\singlespacing `And there it is: we never will overtake Kew Dwek until he sleeps once more' (uttered sarcastically)
        \label{ive1}
        \end{footnotesize}
        \end{exe}
\end{document}

MWE解決間距問題

我想將翻譯行設定為單倍行距,但您會注意到該\singlespacing命令不起作用。我正在使用 Overleaf 編輯文檔,所以我不知道如何直接編輯gb4e設定。

答案1

只要在和之間加上一條\par(「段落分隔符號」)指令即可。或者,只需在指令後插入全空行即可建立隱式段落分隔符號。(uttered sarcastically)\label{ive1}\label

順便說一句,\footnotesize是一個開關。限制其範圍、問題\begingroup\endgroup指令。

在此輸入影像描述

\documentclass[demo]{article} % remove 'demo' option in real document
\usepackage{graphicx} % Required for inserting images
\usepackage{setspace}
\usepackage{gb4e}
\title{test}
\author{}
\date{December 2023}

\begin{document}

\maketitle

\doublespacing

\section{Introduction}

\begin{exe}
\ex
\begingroup
\footnotesize
        \gll  jekk asdas mniuuya mluy kju ddwqe, \textbf{sh-z-vuu} juuil kju ssa-mqwcx-e \\
              {there} {both} {never.\textsc{1pl.3sg}} {we} Kew Dwek, \textsc{fut}-jump-\textsc{1.pl} again Kew \textsc{fut}-sleep-\textsc{3.sg}.\\
              
        \trans\singlespacing `And there it is: we never will overtake Kew Dwek until he sleeps once more' (uttered sarcastically)\par % <-- "\par" is new
\label{ive1}
\endgroup

\end{exe}
\end{document}

相關內容