Can I have quotations like with fancychapters but without a chapter? I need several quotations for the feedbacks page.
Asked
Active
Viewed 123 times
1 Answers
2
I know the fancychap package, which doesn't show quotes, but I din't know fancychapters. However, you might find the epigraph package useful which was planned for placing quotations aka epigraphs near sectional divisions, or just to produce a list of them.
% 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}
Peter Wilson
- 28,066

\blockquotecommand from thecsquotespackage. – leandriis Dec 25 '20 at 17:17