The kvoptions tag has no wiki summary.
3
votes
1answer
60 views
How do I prevent the beamer class from removing my global options
I'm currently writing a latex package (or actually a beamer theme, but apparently that makes no difference) and I want to be able to specify a few things using key-value pairs in the global options.
...
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}
...
2
votes
1answer
344 views
beamerposter passing portrait options to custom theme
Hi I'm preparing a custom theme for beamerposter to align with the theme of my institution. I have to include a figure banner on the headline plus the possibility to include 2 different logos. So far ...
2
votes
2answers
366 views
ProcessOptions and ProcessKeyvalOptions
\ProcessOptions and \ProcessKeyvalOptions
Which comes first? Does it matter?
\ProcessOptions\relax or \ProcessOptions*
What's the difference? Apparently for keyval there is only the starred ...
4
votes
1answer
332 views
Argument of setkeys
My motivation bases on the package listings (also my package mdframed). The package allows to define a style via \lstset{foo}{options}. Now I want to create a macro to expand the style foo. For ...
4
votes
2answers
344 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
198 views
Why am I processing a comma-separated list incorrectly when using etoolbox and kvoptions?
I'm trying to pick something out of a list that has been passed from some package options by kvoptions, but docsvlist doesn't appear to be recognising the commas.
I suspect this may be something to ...