Place quotation (dictum) in a box
I did not use epigraph
. I wrote my own version:
\usepackage{times}
\definecolor{quotationcolour}{HTML}{F0F0F0}
\definecolor{quotationmarkcolour}{HTML}{1F3F81}
% Double-line for start and end of epigraph.
\newcommand{\epiline}{\hrule \vskip -.2em \hrule}
% Massively humongous opening quotation mark.
\newcommand{\hugequote}{%
\fontsize{42}{48}\selectfont \color{quotationmarkcolour} \textbf{``}
\vskip -.5em
}
% Beautify quotations.
\newcommand{\epigraph}[2]{%
\bigskip
\begin{flushright}
\colorbox{quotationcolour}{%
\parbox{.60\textwidth}{%
\epiline \vskip 1em {\hugequote} \vskip -.5em
\parindent 2.2em
#1\begin{flushright}\textsc{#2}\end{flushright}
\epiline
}
}
\end{flushright}
\bigskip
}
The result:
One package worth looking at is epigraph, which includes a few options for setting this sort of thing.