[Tex/LaTex] Change font in the Springer Verlag Class

fontstemplates

I am using the Springer Verlag Mongraph class svmono.cls for layouting my PhD dissertation. With a preamble, i am able on changing small things in this preamble, however i fail in changing the font type to e.g. Kurier Light Condensed. What is the easiest way to change the \normalfont?

Best Answer

The following example (using svmono.cls as provided in your first link) works for me.

\documentclass{svmono}

\usepackage[T1]{fontenc}
\usepackage[light,condensed,math]{kurier}

\usepackage{lipsum}

\begin{document}

\lipsum[1]

\end{document}

(The lipsum package is only used to add some dummy text to the example.)