[Tex/LaTex] How to change the indentation in quote and quotation environments and commands

indentationlengthsquoting

I need to change the indentation that the quote and quotation environments and commands employ. I assume that there is some length I need to set, but I've googled around, and cannot find what I am after. So, how to alter the indentation?

Best Answer

What about something like that ?

\newenvironment{myquote}%
  {\list{}{\leftmargin=0.3in\rightmargin=0.3in}\item[]}%
  {\endlist}

You can also make the margin size an option:

\newenvironment{myquote}[1]%
  {\list{}{\leftmargin=#1\rightmargin=#1}\item[]}%
  {\endlist}

And use with:

\begin{myquote}{0.3in}
  % ...
\end{myquote}