I want to create a document class based on a KOMA-Script class. If myclass.cls contains the following
\ProvidesClass{myclass}[2011/08/31]
\LoadClass[paper=a5]{scrartcl}
then compiling a document whose first line is \documentclass{myclass} generates the warning
LaTeX Warning: Unused global option(s):
[paper=a5].
The same problem occurs with scrbook and scrreprt. What am I doing wrong?
a5paperand notpaper=a5. – Werner Aug 31 '11 at 17:50paper=a5is correct – Aug 31 '11 at 17:56