Document Classes ⇒ problems with scrbook
problems with scrbook
I am using as document class the scrbook.
When I want to compile my code there occur a plenty of errors which deal with the scrbook.
e.g. I cannot use \sc for small capitals or \z ... it says it is an undefined old font command.
How should I handle this error?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
problems with scrbook
\sc
is deprecated and not even a standard LaTeX command but defined in base LaTeX classes such as in book.cls.Use
\scshape
or \textsc{}
instead. Similar for other old two letter font switching commands.Stefan
problems with scrbook
Is there a whole list of equivalents for the old commands?
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
problems with scrbook
Those new command start with the same 2 letters, so you can see which one is for what.
Stefan