3 Jul
2013
3 Jul
'13
8:28 p.m.
Am 03.07.2013 um 20:00 schrieb Pablo Rodríguez
Dear list,
I think I have used once or twice in the past, but has \showsetup been deprecated?
When I try to compile:
\starttext \showsetup{language} \stoptext
I get:
! Undefined control sequence.
Is there a replacement for \showsetup.
Many thanks for your help,
1. You have to load the “int-load” module. 2. You have to load the definitions for the core commands. 3. Even though you can use \showsetup{…} it’s better to use \showsetup[…] because braces are for commands which expect text but you pass only a keyword to the command. \usemodule[int-load] \loadsetups[cont-en.xml] \starttext \showsetup[language] \stoptext Wolfgang