Doug Laidlaw wrote:
> I am writing a book. I sent my publisher a sample of what I had written in
> LyX (using the koma book template,) and he likes the appearance. But he
> disagrees with some fonts. He tells me that quotations and URLs should be
> in italics. Quotations are in default font like blockquotes, and URLs seem
> to be in a Courier-style font. I can see no obvious place to fine-tune
> these. Can it be done? I would rather modify the setup now than edit them
> all.
Yes, both can be customized in the Preamble.
1. URL:
\...@ifundefined{selectfont}{%
\def\UrlFont{\it}}
{\def\UrlFont{\rmfamily\itshape}
}
2. Quotations:
\newcommand*{\OriginalQuote}{}
\let\OriginalQuote\quote
\renewcommand*{\quote}{\OriginalQuote\itshape}
\newcommand*{\OriginalQuotation}{}
\let\OriginalQuotation\quotation
\renewcommand*{\quotation}{\OriginalQuotation\itshape}
Jürgen