I need different types of quotations in a letter for discussing the text of another document. Therefore, I want to create several environments that are all similar to the generic quotation environment, but having different fonts/font properties. In one of them I want to use the typewriter family of fonts. The problem that I have is that using \ttfamily interferes with latex hyphenation. I get lots of underfull and overfull box warnings and document layout is a mess (text in the right margin):
Code: Select all
\newenvironment{NewText}
{\begin{quotation}\noindent\ttfamily}
{\end{quotation}}
Code: Select all
\newenvironment{NewText}
{\begin{center}\begin{minipage}[h]{.9\textwidth}\noindent\ttfamily}
{\end{minipage}\end{center}}