ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* \startmode and \startcomment inside of \def
@ 2010-11-07 18:42 Vedran Miletić
  2010-11-07 19:06 ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Vedran Miletić @ 2010-11-07 18:42 UTC (permalink / raw)
  To: NTG-ConTeXt mailing list


[-- Attachment #1.1: Type: text/plain, Size: 497 bytes --]

Hi,

I would like to define something like this:
\def\startSolution{\startmode[solutions]...}
\def\stopSolution{...\stopmode}

But when I use \startSolution and \stopSolution, and mode solutions isn't
enabled, I get something like
Runaway argument?
aaa \stopSolution \stoptext
! File ended while scanning use of \dostopmode.

system          > error on line 0 in file : File ended while scanning use of
\dostopmode ...

What's the proper way of doing this?

-- 
Vedran Miletić

[-- Attachment #1.2: Type: text/html, Size: 572 bytes --]

[-- Attachment #2: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: \startmode and \startcomment inside of \def
  2010-11-07 18:42 \startmode and \startcomment inside of \def Vedran Miletić
@ 2010-11-07 19:06 ` Wolfgang Schuster
  2010-11-07 19:49   ` Vedran Miletić
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2010-11-07 19:06 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 07.11.2010 um 19:42 schrieb Vedran Miletić:

> Hi,
> 
> I would like to define something like this:
> \def\startSolution{\startmode[solutions]...}
> \def\stopSolution{...\stopmode}
> 
> But when I use \startSolution and \stopSolution, and mode solutions isn't enabled, I get something like
> Runaway argument?
> aaa \stopSolution \stoptext 
> ! File ended while scanning use of \dostopmode.
> 
> system          > error on line 0 in file : File ended while scanning use of \dostopmode ...
> 
> What's the proper way of doing this?

Use \startmode[...] ... \stopmode in your document without your own Solution environment or define the environment as

\definebuffer[Solution][local=yes]

\startmode[solutions]
\setupbuffer[Solution][local=no]
\stopmode

\starttext

...

\startSolution
solution
\stopSolution

...

\stoptext

Wolfgang

___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: \startmode and \startcomment inside of \def
  2010-11-07 19:06 ` Wolfgang Schuster
@ 2010-11-07 19:49   ` Vedran Miletić
  2010-11-07 20:20     ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Vedran Miletić @ 2010-11-07 19:49 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1177 bytes --]

2010/11/7 Wolfgang Schuster <schuster.wolfgang@googlemail.com>

>
> Am 07.11.2010 um 19:42 schrieb Vedran Miletić:
>
> > Hi,
> >
> > I would like to define something like this:
> > \def\startSolution{\startmode[solutions]...}
> > \def\stopSolution{...\stopmode}
> >
> > But when I use \startSolution and \stopSolution, and mode solutions isn't
> enabled, I get something like
> > Runaway argument?
> > aaa \stopSolution \stoptext
> > ! File ended while scanning use of \dostopmode.
> >
> > system          > error on line 0 in file : File ended while scanning use
> of \dostopmode ...
> >
> > What's the proper way of doing this?
>
> Use \startmode[...] ... \stopmode in your document without your own
> Solution environment or define the environment as
>
> \definebuffer[Solution][local=yes]
>
> \startmode[solutions]
> \setupbuffer[Solution][local=no]
> \stopmode
>
> \starttext
>
> ...
>
> \startSolution
> solution
> \stopSolution
>
> ...
>
> \stoptext
>

How would I then do something like this?

\def\startSolution{\startmode[solutions]\startframedtext}
\def\stopSolution{\stopframedtext\stopmode}

-- 
Vedran Miletić

[-- Attachment #1.2: Type: text/html, Size: 1654 bytes --]

[-- Attachment #2: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: \startmode and \startcomment inside of \def
  2010-11-07 19:49   ` Vedran Miletić
@ 2010-11-07 20:20     ` Wolfgang Schuster
  2010-11-07 20:53       ` Aditya Mahajan
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2010-11-07 20:20 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 07.11.2010 um 20:49 schrieb Vedran Miletić:

> How would I then do something like this?
> 
> \def\startSolution{\startmode[solutions]\startframedtext}
> \def\stopSolution{\stopframedtext\stopmode}

\startmode[solution]
\setupbuffer[Solution][local=no,before=\startframedtext,after=\stopframedtext]
\stopmode

Wolfgang

___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: \startmode and \startcomment inside of \def
  2010-11-07 20:20     ` Wolfgang Schuster
@ 2010-11-07 20:53       ` Aditya Mahajan
  0 siblings, 0 replies; 5+ messages in thread
From: Aditya Mahajan @ 2010-11-07 20:53 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: TEXT/PLAIN, Size: 734 bytes --]

On Sun, 7 Nov 2010, Wolfgang Schuster wrote:

>
> Am 07.11.2010 um 20:49 schrieb Vedran Miletić:
>
>> How would I then do something like this?
>>
>> \def\startSolution{\startmode[solutions]\startframedtext}
>> \def\stopSolution{\stopframedtext\stopmode}
>
> \startmode[solution]
> \setupbuffer[Solution][local=no,before=\startframedtext,after=\stopframedtext]
> \stopmode

In general, I agree with Wolfgang. It is better to redefine the macro at 
an outer level. You can even do:

\defineframedtext[Solution]

\startnotmode[solution]
\definebuffer[Solution][local=yes]
\stopnotmode

However, in the few cases that you actually need to check for a mode 
inside a macro, you can use \doifmode ... etc.

Aditya

[-- Attachment #2: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-11-07 20:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-07 18:42 \startmode and \startcomment inside of \def Vedran Miletić
2010-11-07 19:06 ` Wolfgang Schuster
2010-11-07 19:49   ` Vedran Miletić
2010-11-07 20:20     ` Wolfgang Schuster
2010-11-07 20:53       ` Aditya Mahajan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).