如何在对齐文本中自动居中省略号

如何在对齐文本中自动居中省略号

请考虑柏拉图的以下摘录共和国

在此处输入图片描述

看看倒数第二行的省略号是如何完美地居中的。

然而(经常遇到这种情况),当我尝试在 Latex 中(使用 Pdflatex)生成这样的段落时:

\documentclass{文章}

\begin{document}
\large

In \emph{Laws} 731 {\small{\scshape{B-C}}} Plato tells us again that the soul cannot combat injustice without the capacity for righteous indignation. The Stoics affected to deprecate anger always, and the difference remained a theme of controversy between them and the Platonists. \textit{Cf.} Schmidt, \textit{Ethik der Griechen}, ii. pp. 321 ff., Seneca, \textit{De ira}, i. 9, and \textit{passim.} Moralists are still divided on the point. \textit{Cf.} Bagehot, \textit{Lord Brougham :} ``Another faculty of Brougham \ldots is the faculty of easy anger. 398
\end{document}

我明白了:

在此处输入图片描述

注意省略号距离中心右侧有多远。

问题:有没有办法使用 Pdflatex 来纠正这个问题,以便省略号在两端对齐的文本中总是“居中”显示?

谢谢。

答案1

ellipsis如果您希望省略号周围有均匀的间距,则需要此包:

\documentclass{article}
\usepackage{ellipsis}

\begin{document}
 
``Another faculty of Brougham \ldots\ is the faculty 

``Another faculty of Brougham \ldots{} is the faculty 

``Another faculty of Brougham \textellipsis\ is the faculty 

\end{document}

在此处输入图片描述

相关内容