Is it possible add at the loaded class some options? look at the example below:
\documentclass{scrbook}
\AddOptionsToClass{headinclude,footinclude}% something like this command
\begin{document}
test
\end{document}
|
Is it possible add at the loaded class some options? look at the example below:
|
||||
|
If a class or package is loaded, LaTeX does not load them again (the exception is package
Some classes and packages provide setup commands that allow to change the behaviour of the class or package at a later time, e.g.:
|
|||
|
|
|
The solution I have been using is:
This allows you to change the options via the command line if so desired. |
|||
|
|
\def\MyClassOptions{}before\documentclass, and use\documentclass[MyClassOptions]{scrbook}. This could also allow (with some additional logic) for a way to specify the class options on the command line, if so desired. – Peter Grill Oct 1 '12 at 21:06