我正在写一篇文章,其中包含几个简短的例句。如果我的例句水平居中而不是左对齐,整个文档看起来会更好。当然,我仍然需要左侧的标签。我该如何实现这一点?这是一个简单的 MWE:
\documentclass{article}
\usepackage{gb4e}
\begin{document}
\begin{exe}
\ex This sentence is short.
\end{exe}
\end{document}
答案1
您需要使用\hfill
和\hfill\null
:
笔记:
- 包裹
showframe
仅用于显示页边距。实际使用中不需要它。
代码:
\documentclass{article}
\usepackage{showframe}
\usepackage{gb4e}
\begin{document}
\begin{exe}
\ex \hfill This sentence is short.\hfill\null
\end{exe}
\end{document}