\dictum 中的文本

\dictum 中的文本

我使用脚本,并在章节开始之前放置如下题词:

\setkomafont{dictumauthor}{\normalfont}
\renewcommand*\dictumwidth{0.5\linewidth}
\setchapterpreamble{%
\dictum[Lewis Carroll]{
Begin at the beginning, and go on till you come to the end: then stop.}}

然后文本将以左对齐 (= 右对齐) 的格式显示。

\renewcommand*{\raggeddictumtext}{\centering}

我可以将排版改为居中(或类似于平齐)。有没有办法让格言文本对齐(像普通文本一样)?我查阅了 KOMA 指南(第 3.17 节),但没有找到答案

答案1

使用

\renewcommand*\raggeddictumtext{}

要得到

在此处输入图片描述

代码:

\documentclass{scrreprt}
\setkomafont{dictumauthor}{\normalfont}
\renewcommand*\dictumwidth{0.5\linewidth}
\renewcommand*\raggeddictumtext{}
\begin{document}
\setchapterpreamble{%
\dictum[Lewis Carroll]{%
  Begin at the beginning, and go on till you come to the end: then stop.}}
\chapter{Chapter}
\end{document}

相关内容