>>>>> "Arnd" == Arnd Hanses <[EMAIL PROTECTED]> writes:
Arnd> Good idea, most of the not so hackish stuff can be put
Arnd> there. The experimental stuff would remain in the three classes
Arnd> for private hacking.
No, put all your code in a file you name alfa.sty (or whatever name
sounds nice to you): the code which is currently in the .cls file
(which is always the same if I remember well) and the code from
alfanum.sty. This way you have only *one* style file to distribute.
>> - The \pagenumbering stuff can be added to \maketitle so that they
>> are done automatically.
>>
Arnd> What do mean. Modifiying the \maketitle of Koma classes, e.g.
Just add to your style file:
\let\real@maketitle=\maketitle
\renewcommand{\maketitle}{%
\pagenumbering{empty}%
\real@maketitle%
\pagenumbering{roman}
}
My example is probably wrong since I do not remember your exact code,
but I think it shows what I mean.
Arnd> But this would bloat LyX layouts. And I'm not sure how to do
Arnd> this in a *.sty file.
Don't put code in .layout files; a \usepackage is enough. You can move
the exact same code in a .sty file.
JMarc