[Tex/LaTex] “Inspirational” quote at start of chapter

chaptersquoting

I recall seeing a package to make quotes like that of the following image at the start of a chapter, but I can't seem to find it again.

Combinatorics and Graph Theory

(This image is from the book Combinatorics and Graph Theory by Harris, Hirst, and Mossinghoff)

Best Answer

I think it is the package epigraph and is included in both TeX Live and MiKTeX distributions.

\documentclass{book}
\usepackage{epigraph}
\begin{document}
\chapter{First Chapter}
\epigraph{I recall seeing a package to make quotes}{Snowball}
\end{document}

enter image description here