我可以引用类似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}