Tagged Questions
4
votes
2answers
343 views
Pass keyval string option to babel
How to pass a keyval string option given to my package to babel?
I load my package with
\usepackage[languages={ngerman,english}]{mylang}
In package mylang I want to handle this optional languages ...
5
votes
1answer
99 views
Handle class options in the order they're given
How can I pass options of my package in a specific order to another loaded package?
\ProvidesPackage{L10n}
\DeclareOption{english}{\PassOptionsToPackage{\CurrentOption}{babel}}
...