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

翻訳行を 1 行にしたいのですが、コマンドが機能しないのがおわかりでしょう。Overleaf を使用してドキュメントを編集しているので、設定を直接\singlespacing編集する方法がわかりません。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}

関連情報