gb4e 中心示例文本

gb4e 中心示例文本

我正在写一篇文章,其中包含几个简短的例句。如果我的例句水平居中而不是左对齐,整个文档看起来会更好。当然,我仍然需要左侧的标签。我该如何实现这一点?这是一个简单的 MWE:

\documentclass{article}
\usepackage{gb4e}
\begin{document}
\begin{exe}
  \ex This sentence is short.
\end{exe}
\end{document}

答案1

您需要使用\hfill\hfill\null

在此处输入图片描述

笔记:

代码:

\documentclass{article}
\usepackage{showframe}
\usepackage{gb4e}
\begin{document}
\begin{exe}
  \ex \hfill This sentence is short.\hfill\null
\end{exe}
\end{document}

相关内容