I'd like to create a start/stop command with a parameter \startzzz[a] one two three \stopzzz \startzzz[b] one two three \stopzzz How do i define/pass the tag parameter in the definition? This does not work (obviously) \definestartstop[zzz][ before={\hrule\bf tag\blank}, after={\blank[10mm]} ] I cannot find it in the documentation .F
Like this? \usemodule[annotation] %Thanks for this module, Wolfgang \defineannotation[zzz] \define[2]\AnnotationCommand {\doifelse{\placeannotationtitle}{}{}{\hrule\bf\placeannotationtitle\par}#2\blank[10mm]} \setupannotation[zzz] [alternative=command, command=\AnnotationCommand, text=] \starttext \startzzz{a} Hola \stopzzz \startzzz{b} Chao \stopzzz \startzzz Hola de nuevo \stopzzz \stoptext Jairo El vie, 22 de ene. de 2021 a la(s) 12:51, Floris van Manen (vm@klankschap.nl) escribió:
I'd like to create a start/stop command with a parameter
\startzzz[a] one two three \stopzzz
\startzzz[b] one two three \stopzzz
How do i define/pass the tag parameter in the definition? This does not work (obviously)
\definestartstop[zzz][ before={\hrule\bf tag\blank}, after={\blank[10mm]} ]
I cannot find it in the documentation
.F
___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://context.aanhet.net archive : https://bitbucket.org/phg/context-mirror/commits/ wiki : http://contextgarden.net
___________________________________________________________________________________
unfortunately this does not work, 'annotation' is not found. But is it possible to give a start/stop definition user parameters? And if so, how? .F
How strange. I guess you don't have your modules installed. In such a case,
you could install them from modules.contextgarden.net and put content under
texmf-modules so after mtxrun --generate and context --make examples work.
Another possibility is to use \do...empty and such, but it feels odd when a
module for that is already available.
Jairo
El vie., 22 de ene. de 2021 5:07 p. m., Floris van Manen
unfortunately this does not work, 'annotation' is not found.
But is it possible to give a start/stop definition user parameters? And if so, how?
.F
___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://context.aanhet.net archive : https://bitbucket.org/phg/context-mirror/commits/ wiki : http://contextgarden.net
___________________________________________________________________________________
Jairo A. del Rio schrieb am 22.01.2021 um 23:14:
How strange. I guess you don't have your modules installed. In such a case, you could install them from modules.contextgarden.net http://modules.contextgarden.net and put content under texmf-modules so after mtxrun --generate and context --make examples work.
The core function of the annotation module (custom environment with key-val-arguments) is part of ConTeXt but it doesn't create new environment commands. \defineuserdata [zzz] [alternative=zzz, after={\blank[10mm]}] \defineuserdataalternative[zzz][renderingsetup=userdata:zzz] \startsetups[userdata:zzz] \hrule \doifsomething{\userdataparameter{title}} {\bold{\strut\userdataparameter{title}} \blank} \strut\getuserdata \stopsetups \starttext \startuserdata[zzz] \input weisman \stopuserdata \startuserdata[zzz][title=Ward] \input ward \stopuserdata \stoptext
Another possibility is to use \do...empty and such, but it feels odd when a module for that is already available.
No \do...empty (LMTX only): \tolerant\protected\def\startzzz#=% {\hrule \doifsomething{#1}{\bold{\strut#1}\blank}} \protected\def\stopzzz {\blank[10mm]} \starttext \startzzz \input weisman \stopzzz \startzzz{Ward} \input ward \stopzzz \stoptext Wolfgang
El vie, 22 de ene. de 2021 a la(s) 17:39, Wolfgang Schuster ( wolfgang.schuster.lists@gmail.com) escribió:
Jairo A. del Rio schrieb am 22.01.2021 um 23:14:
How strange. I guess you don't have your modules installed. In such a case, you could install them from modules.contextgarden.net http://modules.contextgarden.net and put content under texmf-modules so after mtxrun --generate and context --make examples work.
The core function of the annotation module (custom environment with key-val-arguments) is part of ConTeXt but it doesn't create new environment commands.
\defineuserdata [zzz] [alternative=zzz, after={\blank[10mm]}]
\defineuserdataalternative[zzz][renderingsetup=userdata:zzz]
\startsetups[userdata:zzz] \hrule \doifsomething{\userdataparameter{title}} {\bold{\strut\userdataparameter{title}} \blank} \strut\getuserdata \stopsetups
\starttext
\startuserdata[zzz] \input weisman \stopuserdata
\startuserdata[zzz][title=Ward] \input ward \stopuserdata
\stoptext
Another possibility is to use \do...empty and such, but it feels odd when a module for that is already available.
No \do...empty (LMTX only):
\tolerant\protected\def\startzzz#=% {\hrule \doifsomething{#1}{\bold{\strut#1}\blank}}
\protected\def\stopzzz {\blank[10mm]}
\starttext
\startzzz \input weisman \stopzzz
\startzzz{Ward} \input ward \stopzzz
A nicer way to go, indeed.
\stoptext
Wolfgang
Jairo
On 22/01/2021 23:39, Wolfgang Schuster wrote:
No \do...empty (LMTX only):
\tolerant\protected\def\startzzz#=% {\hrule \doifsomething{#1}{\bold{\strut#1}\blank}}
\protected\def\stopzzz {\blank[10mm]}
\starttext
\startzzz \input weisman \stopzzz
\startzzz{Ward} \input ward \stopzzz
\stoptext
Thank you ! .F
participants (3)
-
Floris van Manen
-
Jairo A. del Rio
-
Wolfgang Schuster