
나는 scrreprt를 사용하고 장이 시작되기 전에 다음과 같은 비문을 배치합니다.
\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.}}
그러면 텍스트가 Flushleft "typography"(= raggedright)로 나타납니다. 와 함께
\renewcommand*{\raggeddictumtext}{\centering}
타이포그래피를 중앙 정렬(또는 Flushrigt와 유사)로 변경할 수 있습니다. (일반 텍스트처럼) 정당화에 dictum 텍스트를 포함할 수 있는 방법이 있나요? 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}