引文与 fancychapters 类似,但没有章节

引文与 fancychapters 类似,但没有章节

我可以引用类似fancychapters但无章节的引文吗?我需要几段引文用于反馈页面。

答案1

我知道这个fancychap包不显示引文,但我不知道fancychapters。然而,你可能会发现这个epigraph包很有用,它计划用于在部分划分附近放置引文(又称题词),或者只是生成一个列表。

% quotesprob.tex  SE 576303
\documentclass{book}
\usepackage{epigraph}

\begin{document}

\chapter{First}
\epigraphhead[60pt]
  {\epigraph{Epigraph before chapter}{Anonymous}}
\epigraph{The whole is more than the sum of the parts}%
         {\textit{Metaphysica} \\ Aristotle}

Now for a list of epigraphs.

\begin{epigraphs}
\qitem{Example is the school of mankind, and they will learn at no other}%
      {\textit{Letters on a Regicide Peace} \\ \textsc{Edmund Burke}}
\qitem{And now for something completely different.}{Monty Python}
\end{epigraphs}

\end{document}
 

在此处输入图片描述

相关内容