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?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10330
- 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: 10330
- 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