Context: I'm building a new package for my university. I need to set a lot of options for the document class, like twoside, a4paper, 12pt, or firstpagenum=chapter.
I would like to set them by default in my package without creating a new class. Is it possible?
\RequirePackageon top of\documentclass, passing options to a class from a package will require a new invention. Passing options to class after the class file has been read is not possible - and the class file can’t be read twice. In your class file, you can call\PassOptionsToClassbefore\LoadClass, or, in place of these two commands, simply call \LoadClassWithOptions. – Ahmed Musa May 26 '12 at 2:25