我用gb4e
用于编写语言学示例的包。MWE 类似于以下内容:
\documentclass{article}
\usepackage{gb4e}
\begin{document}
\begin{exe}
\ex
\gll aaaaa bbbbbb cccc\\
gloss gloss gloss\\
\glt `translation'
\end{exe}
\end{document}
编译时,对齐项之间的间距(例如,aaaaa
和之间的bbbbbb
间距)在我看来非常小,尤其是当例句很长且很复杂时。有没有办法加宽它(或控制它的宽度)?
答案1
您可以调整的长度\glossglue
:
\documentclass{article}
\usepackage{gb4e}
\setlength{\glossglue}{3pt plus 2pt minus 1pt}
\begin{document}
3 point
\begin{exe}
\ex
\gll aaaaa bbbbbb cccc\\
gloss gloss gloss\\
\glt `translation'
\end{exe}
\setlength{\glossglue}{5pt plus 2pt minus 1pt}
5 point
\begin{exe}
\ex
\gll aaaaa bbbbbb cccc\\
gloss gloss gloss\\
\glt `translation'
\end{exe}
\end{document}
默认值为0pt plus 2pt minus 1pt
;将第一个值设置为更大的值,如我的示例所示。您可能希望将其设置为 5pt 大小。