如何使 \chapter 和 \part 右对齐并在其下方获取引用?

如何使 \chapter 和 \part 右对齐并在其下方获取引用?

考虑这个例子:http://jmvdveer.home.xs4all.nl/algol68g.pdf

章节和节标题设置为与右边距对齐,我该怎么做?更重要的是,如何根据偶数页和奇数页使它们左右对齐?

如果您向下滚动到第“xi”页(序言),您会在章节行下方看到 Blaise Pascal 的一句名言。我似乎记得这是 Koma 课程的一部分,但我再也找不到如何获取它了。我相信在 a\chapter{}或下方有一个额外的命令可以获取诸如 qotes 等内容\part{}

我正在使用 XeLaTeX 和 Koma 类。

答案1

似乎没人找到合适的包。请随意更改字体样式。最难的部分是让左右括号对齐。

\documentclass{book}

\newsavebox{\tempbox}
\newlength{\tempheight}

\newcommand{\profundity}[3]% #1=quote, #2=source, #3=author
{\savebox{\tempbox}{\parbox[t]{3in}% adjust width as desired
{\raggedright\textit{#1}\newline\textbf{#2}\hfill -\hfill #3}}%
\settodepth{\tempheight}{\usebox{\tempbox}}% distance from top baseline to bottom
\addtolength{\tempheight}{-.2\baselineskip}% distance from bottom baseline to bottom
\hfill$\lbrace$\usebox{\tempbox}\raisebox{-\tempheight}{$\rbrace$}\newline}

\begin{document}
\chapter{Preface}
\noindent\rule{\textwidth}{.5pt}

\profundity{Except for the hanging indentation, enumerate is for people who can't count.}%
{Personal Correspondence}{John Kormylo}

And now for something completely different.
\end{document}

如果您想要 KOMA,请下次添加 MWE。

引用

相关内容