Questions tagged [key]
The key tag has no summary.
1 question
5
votes
2
answers
99
views
NewDocumentCommand with keyword arguments: how to prevent evaluation of keyword default values?
Consider the following MWE:
\documentclass{article}
\DeclareKeys [ myKeys ]{
a .store = \whereA,
b .store = \whereB,
}
\SetKeys [ myKeys ] {
a = AAA,
b = \pageref{#2},
}
\...