[Tex/LaTex] Align Quote to right

epigraphshorizontal alignmentquoting

I want to align

\begin{quote}
  Text
  Author (\cite{Source})
\end{quote}

to the right side of the paper. How can I do this?

Best Answer

redefine the quote environment

\renewenvironment{quote}
  {\begin{trivlist} \setlength\leftskip{2cm} \setlength\rightskip{0pt}
   \item\relax}
  {\end{trivlist}}

or define a new Quote environment with the same code

Related Question