Tagged Questions
6
votes
1answer
105 views
When writing my own document class, certain options don't get passed to base class. Why?
I'm trying to create my own class using scrbook as a base class, and biblatex as for my bibliography. Consider this MWE:
\documentclass[bibliography=totoc,fontsize=12]{scrbook}
...
6
votes
1answer
140 views
Mark key-value class options as used
I have written a wrapper for the scrartcl class in the following way:
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{mycls}[2012/08/23]
\RequirePackage{kvoptions}
\DeclareStringOption{title}
...
1
vote
1answer
283 views
own class with twocolumns activated in \ifdefined for KOMA and xelatex
I want to do something like in http://stackoverflow.com/questions/1465665/passing-command-line-arguments-to-latex-document.
For better explanation I'll show a minimal running example:
My test.cls:
...
3
votes
2answers
348 views
KOMA classes and \LoadClass
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 ...