1

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?

lockstep
  • 250,273

1 Answers1

2

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.)

lockstep
  • 250,273
  • ha, it turned out that i wrote the fontenc and kurier line code too early in my preamble, if it are the last lines it indeed works perfectly ! – ruben baetens Oct 08 '11 at 17:30
  • http://tex.stackexchange.com/questions/2859/should-the-fontenc-package-be-loaded-before-or-after-font-packages – doncherry Oct 08 '11 at 21:10