ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Two layer in a document
@ 2010-09-30  9:49 Daniel Grycman
  2010-09-30 12:26 ` R. Bastian
  2010-09-30 17:42 ` Wolfgang Schuster
  0 siblings, 2 replies; 11+ messages in thread
From: Daniel Grycman @ 2010-09-30  9:49 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi list,

I am typesetting a template for internal documentation. In the header of
the document I want to put two different figure. One on the left side and
the other on the right side. When I compile the source the output shows
only the figure on the left side.

\enableregime[utf-8]
\mainlanguage[de]
\setupcolors [state=start]
\setupoutput[pdftex]
\setuppapersize[A4][A4]
\usemodule [simplefonts,r,tikz,edtsnc,chart]
\setmainfont [rubscalatz]
\setsansfont [rubflama]
\setuphead [chapter][number=no, style=bold, textcommand=\ss]
\setuphead [section][number=no, style=bold, textcommand=\ss]
\setuphead [subsection][number=no]
\setuphead [subsubsection][number=no]
\setuplayout
[top=0cm,rightmargin=2.3cm,footer=1.0cm,header=5cm,topspace=0mm,height=29.9
577cm,width=16.25cm,leftmargindistance=0cm,rightmargindistance=0cm]

\setupbackgrounds[footer][background=color,backgroundcolor=gray]
\setupbackgrounds[text][rightmargin][background=color,backgroundcolor=gray]
\setupbackgrounds[header][rightmargin][background=color,backgroundcolor=gra
y]
\definelayer[logo][width=\paperwidth,height=\paperheight,state=repeat]
\setupbackgrounds[page][righttop][background={foreground,logo}]
\setlayer[logo][preset=righttop,hoffset=1cm,state=start]
{\externalfigure[label][height=4cm,3.5cm]}
\definelayer[marke][width=6.5cm,height=0.3cm,state=repeat]
\setupbackgrounds[page][lefttop][background={foreground,marke}]
\setlayer[marke][preset=lefttop,hoffset=1.3cm,voffset=1.4cm,state=repeat]
{\externalfigure[wortmarke][height=0.3cm,width=6.5cm]}

\setuppagenumbering[state=stop]
\starttext
Bla Bla
\page
Bla Bla
\page
Bla
\stoptext


Can anybody find the possible mistake I did?
Thanks.

Daniel




___________________________________________________________________________________
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] 11+ messages in thread

* Re: Two layer in a document
  2010-09-30  9:49 Two layer in a document Daniel Grycman
@ 2010-09-30 12:26 ` R. Bastian
  2010-09-30 13:16   ` Daniel Grycman
  2010-09-30 17:42 ` Wolfgang Schuster
  1 sibling, 1 reply; 11+ messages in thread
From: R. Bastian @ 2010-09-30 12:26 UTC (permalink / raw)
  To: ntg-context

On 30 Sep 2010 11:49:52 +0200
"Daniel Grycman" <daniel.grycman@rub.de> scribit:

> Hi list,
> 
> I am typesetting a template for internal documentation. In the header of
> the document I want to put two different figure. One on the left side and
> the other on the right side. When I compile the source the output shows
> only the figure on the left side.
> 

To place 2 figures I use \startcombination[1*2]

cf. Context - an excursion chap. 10 Figures.

-- 
René Bastian
www.pythoneon.org
www.musiques-rb.org
___________________________________________________________________________________
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] 11+ messages in thread

* Re: Two layer in a document
  2010-09-30 12:26 ` R. Bastian
@ 2010-09-30 13:16   ` Daniel Grycman
  0 siblings, 0 replies; 11+ messages in thread
From: Daniel Grycman @ 2010-09-30 13:16 UTC (permalink / raw)
  To: mailing list for ConTeXt users

I think \startcombination is only functional in the "\starttext
\stoptext"-enviroment. The figures are just layers used in the header of
the document.
Are there any other options?

Daniel

On 30.09.10 14:26, "R. Bastian" <rbastian@free.fr> wrote:

>On 30 Sep 2010 11:49:52 +0200
>"Daniel Grycman" <daniel.grycman@rub.de> scribit:
>
>> Hi list,
>> 
>> I am typesetting a template for internal documentation. In the header of
>> the document I want to put two different figure. One on the left side
>>and
>> the other on the right side. When I compile the source the output shows
>> only the figure on the left side.
>> 
>
>To place 2 figures I use \startcombination[1*2]
>
>cf. Context - an excursion chap. 10 Figures.
>
>-- 
>René Bastian
>www.pythoneon.org
>www.musiques-rb.org
>__________________________________________________________________________
>_________
>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
>__________________________________________________________________________
>_________


___________________________________________________________________________________
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] 11+ messages in thread

* Re: Two layer in a document
  2010-09-30  9:49 Two layer in a document Daniel Grycman
  2010-09-30 12:26 ` R. Bastian
@ 2010-09-30 17:42 ` Wolfgang Schuster
  2010-10-01  7:51   ` R. Bastian
  1 sibling, 1 reply; 11+ messages in thread
From: Wolfgang Schuster @ 2010-09-30 17:42 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 30.09.2010 um 11:49 schrieb Daniel Grycman:

> Hi list,
> 
> I am typesetting a template for internal documentation. In the header of
> the document I want to put two different figure. One on the left side and
> the other on the right side. When I compile the source the output shows
> only the figure on the left side.
> 
> \enableregime[utf-8]
> \mainlanguage[de]
> \setupcolors [state=start]
> \setupoutput[pdftex]
> \setuppapersize[A4][A4]
> \usemodule [simplefonts,r,tikz,edtsnc,chart]
> \setmainfont [rubscalatz]
> \setsansfont [rubflama]
> \setuphead [chapter][number=no, style=bold, textcommand=\ss]
> \setuphead [section][number=no, style=bold, textcommand=\ss]
> \setuphead [subsection][number=no]
> \setuphead [subsubsection][number=no]
> \setuplayout
> [top=0cm,rightmargin=2.3cm,footer=1.0cm,header=5cm,topspace=0mm,height=29.9
> 577cm,width=16.25cm,leftmargindistance=0cm,rightmargindistance=0cm]
> 
> \setupbackgrounds[footer][background=color,backgroundcolor=gray]
> \setupbackgrounds[text][rightmargin][background=color,backgroundcolor=gray]
> \setupbackgrounds[header][rightmargin][background=color,backgroundcolor=gra
> y]

None of these settings is necessary for a minimal example, leave them out next time.

> \definelayer[logo][width=\paperwidth,height=\paperheight,state=repeat]
> \setupbackgrounds[page][righttop][background={foreground,logo}]
> \setlayer[logo][preset=righttop,hoffset=1cm,state=start]
> {\externalfigure[label][height=4cm,3.5cm]}
> \definelayer[marke][width=6.5cm,height=0.3cm,state=repeat]
> \setupbackgrounds[page][lefttop][background={foreground,marke}]
> \setlayer[marke][preset=lefttop,hoffset=1.3cm,voffset=1.4cm,state=repeat]
> {\externalfigure[wortmarke][height=0.3cm,width=6.5cm]}

One layer is enough for both pictures, try also to make it more readable next time.

\definelayer[logo][width=\paperwidth,height=\paperheight,state=repeat]

\setupbackgrounds[page][background={foreground,logo}]

\setlayer
	[logo]
	[preset=righttop,
	 hoffset=1cm]
	{\externalfigure[label][height=4cm,3.5cm]}

\setlayer
	[logo]
	[preset=lefttop,
	 hoffset=1.3cm,
	 voffset=1.4cm]
	{\externalfigure[wortmarke][height=0.3cm,width=6.5cm]}

\starttext
\dorecurse{20}{\input knuth\par}
\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] 11+ messages in thread

* Re: Two layer in a document
  2010-09-30 17:42 ` Wolfgang Schuster
@ 2010-10-01  7:51   ` R. Bastian
  2010-10-01  8:02     ` Daniel Grycman
  2010-10-01  9:00     ` Peter Rolf
  0 siblings, 2 replies; 11+ messages in thread
From: R. Bastian @ 2010-10-01  7:51 UTC (permalink / raw)
  To: ntg-context

On Thu, 30 Sep 2010 19:42:34 +0200
Wolfgang Schuster <schuster.wolfgang@googlemail.com> scribit:

> 
> Am 30.09.2010 um 11:49 schrieb Daniel Grycman:
> 
> > Hi list,
> > 
> > I am typesetting a template for internal documentation. In the header of
> > the document I want to put two different figure. One on the left side and
> > the other on the right side. When I compile the source the output shows
> > only the figure on the left side.
[...]
> One layer is enough for both pictures, try also to make it more readable next time.
> 
> \definelayer[logo][width=\paperwidth,height=\paperheight,state=repeat]
> 
> \setupbackgrounds[page][background={foreground,logo}]
> 
> \setlayer
> 	[logo]
> 	[preset=righttop,
> 	 hoffset=1cm]
> 	{\externalfigure[label][height=4cm,3.5cm]}
> 
> \setlayer
> 	[logo]
> 	[preset=lefttop,
> 	 hoffset=1.3cm,
> 	 voffset=1.4cm]
> 	{\externalfigure[wortmarke][height=0.3cm,width=6.5cm]}
> 
> \starttext
> \dorecurse{20}{\input knuth\par}
> \stoptext
> 
> Wolfgang

Does this work in Mk II ?

>> ___________________________________________________________________________________


-- 
René Bastian
www.pythoneon.org
www.musiques-rb.org
___________________________________________________________________________________
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] 11+ messages in thread

* Re: Two layer in a document
  2010-10-01  7:51   ` R. Bastian
@ 2010-10-01  8:02     ` Daniel Grycman
  2010-10-01  9:00     ` Peter Rolf
  1 sibling, 0 replies; 11+ messages in thread
From: Daniel Grycman @ 2010-10-01  8:02 UTC (permalink / raw)
  To: mailing list for ConTeXt users

It works in MKIV, but I don't what it does in MKII.

Daniel

On 01.10.10 09:51, "R. Bastian" <rbastian@free.fr> wrote:

>On Thu, 30 Sep 2010 19:42:34 +0200
>Wolfgang Schuster <schuster.wolfgang@googlemail.com> scribit:
>
>> 
>> Am 30.09.2010 um 11:49 schrieb Daniel Grycman:
>> 
>> > Hi list,
>> > 
>> > I am typesetting a template for internal documentation. In the header
>>of
>> > the document I want to put two different figure. One on the left side
>>and
>> > the other on the right side. When I compile the source the output
>>shows
>> > only the figure on the left side.
>[...]
>> One layer is enough for both pictures, try also to make it more
>>readable next time.
>> 
>> \definelayer[logo][width=\paperwidth,height=\paperheight,state=repeat]
>> 
>> \setupbackgrounds[page][background={foreground,logo}]
>> 
>> \setlayer
>>     [logo]
>>     [preset=righttop,
>>      hoffset=1cm]
>>     {\externalfigure[label][height=4cm,3.5cm]}
>> 
>> \setlayer
>>     [logo]
>>     [preset=lefttop,
>>      hoffset=1.3cm,
>>      voffset=1.4cm]
>>     {\externalfigure[wortmarke][height=0.3cm,width=6.5cm]}
>> 
>> \starttext
>> \dorecurse{20}{\input knuth\par}
>> \stoptext
>> 
>> Wolfgang
>
>Does this work in Mk II ?
>
>>> 
>>>________________________________________________________________________
>>>___________
>
>
>-- 
>René Bastian
>www.pythoneon.org
>www.musiques-rb.org
>__________________________________________________________________________
>_________
>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
>__________________________________________________________________________
>_________


___________________________________________________________________________________
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] 11+ messages in thread

* Re: Two layer in a document
  2010-10-01  7:51   ` R. Bastian
  2010-10-01  8:02     ` Daniel Grycman
@ 2010-10-01  9:00     ` Peter Rolf
  2010-10-01 10:08       ` Steffen Wolfrum
                         ` (2 more replies)
  1 sibling, 3 replies; 11+ messages in thread
From: Peter Rolf @ 2010-10-01  9:00 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Am 01.10.2010 09:51, schrieb R. Bastian:
> On Thu, 30 Sep 2010 19:42:34 +0200
> Wolfgang Schuster <schuster.wolfgang@googlemail.com> scribit:
> 
>>
>> Am 30.09.2010 um 11:49 schrieb Daniel Grycman:
>>
>>> Hi list,
>>>
>>> I am typesetting a template for internal documentation. In the header of
>>> the document I want to put two different figure. One on the left side and
>>> the other on the right side. When I compile the source the output shows
>>> only the figure on the left side.
> [...]
>> One layer is enough for both pictures, try also to make it more readable next time.
>>
>> \definelayer[logo][width=\paperwidth,height=\paperheight,state=repeat]
>>
>> \setupbackgrounds[page][background={foreground,logo}]
>>
>> \setlayer
>> 	[logo]
>> 	[preset=righttop,
>> 	 hoffset=1cm]
>> 	{\externalfigure[label][height=4cm,3.5cm]}
>>
>> \setlayer
>> 	[logo]
>> 	[preset=lefttop,
>> 	 hoffset=1.3cm,
>> 	 voffset=1.4cm]
>> 	{\externalfigure[wortmarke][height=0.3cm,width=6.5cm]}
>>
>> \starttext
>> \dorecurse{20}{\input knuth\par}
>> \stoptext
>>
>> Wolfgang
> 
> Does this work in Mk II ?
>

You can set your mind at rest and test it yourself.
The 'nuke_my_computer_by_running_context' module is no longer part of
the official distribution ;-)

Best wishes,  Peter
___________________________________________________________________________________
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] 11+ messages in thread

* Re: Two layer in a document
  2010-10-01  9:00     ` Peter Rolf
@ 2010-10-01 10:08       ` Steffen Wolfrum
  2010-10-01 10:44         ` Peter Rolf
  2010-10-01 12:54       ` luigi scarso
  2010-10-01 16:19       ` Aditya Mahajan
  2 siblings, 1 reply; 11+ messages in thread
From: Steffen Wolfrum @ 2010-10-01 10:08 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 01.10.2010 um 11:00 schrieb Peter Rolf:

> Am 01.10.2010 09:51, schrieb R. Bastian:
>> On Thu, 30 Sep 2010 19:42:34 +0200
>> Wolfgang Schuster <schuster.wolfgang@googlemail.com> scribit:
>> 
>>> 
>>> Am 30.09.2010 um 11:49 schrieb Daniel Grycman:
>>> 
>>>> Hi list,
>>>> 
>>>> I am typesetting a template for internal documentation. In the header of
>>>> the document I want to put two different figure. One on the left side and
>>>> the other on the right side. When I compile the source the output shows
>>>> only the figure on the left side.
>> [...]
>>> One layer is enough for both pictures, try also to make it more readable next time.
>>> 
>>> \definelayer[logo][width=\paperwidth,height=\paperheight,state=repeat]
>>> 
>>> \setupbackgrounds[page][background={foreground,logo}]
>>> 
>>> \setlayer
>>> 	[logo]
>>> 	[preset=righttop,
>>> 	 hoffset=1cm]
>>> 	{\externalfigure[label][height=4cm,3.5cm]}
>>> 
>>> \setlayer
>>> 	[logo]
>>> 	[preset=lefttop,
>>> 	 hoffset=1.3cm,
>>> 	 voffset=1.4cm]
>>> 	{\externalfigure[wortmarke][height=0.3cm,width=6.5cm]}
>>> 
>>> \starttext
>>> \dorecurse{20}{\input knuth\par}
>>> \stoptext
>>> 
>>> Wolfgang
>> 
>> Does this work in Mk II ?
>> 
> 
> You can set your mind at rest and test it yourself.
> The 'nuke_my_computer_by_running_context' module is no longer part of
> the official distribution ;-)
> 
> Best wishes,  Peter


... added to "goodies from the mailing list":

http://wiki.contextgarden.net/Humour


Steffen

___________________________________________________________________________________
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] 11+ messages in thread

* Re: Two layer in a document
  2010-10-01 10:08       ` Steffen Wolfrum
@ 2010-10-01 10:44         ` Peter Rolf
  0 siblings, 0 replies; 11+ messages in thread
From: Peter Rolf @ 2010-10-01 10:44 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Am 01.10.2010 12:08, schrieb Steffen Wolfrum:
> 
> Am 01.10.2010 um 11:00 schrieb Peter Rolf:
> 
>> Am 01.10.2010 09:51, schrieb R. Bastian:
>>> On Thu, 30 Sep 2010 19:42:34 +0200
>>> Wolfgang Schuster <schuster.wolfgang@googlemail.com> scribit:
>>>
>>>>
>>>> Am 30.09.2010 um 11:49 schrieb Daniel Grycman:
>>>>
>>>>> Hi list,
>>>>>
>>>>> I am typesetting a template for internal documentation. In the header of
>>>>> the document I want to put two different figure. One on the left side and
>>>>> the other on the right side. When I compile the source the output shows
>>>>> only the figure on the left side.
>>> [...]
>>>> One layer is enough for both pictures, try also to make it more readable next time.
>>>>
>>>> \definelayer[logo][width=\paperwidth,height=\paperheight,state=repeat]
>>>>
>>>> \setupbackgrounds[page][background={foreground,logo}]
>>>>
>>>> \setlayer
>>>> 	[logo]
>>>> 	[preset=righttop,
>>>> 	 hoffset=1cm]
>>>> 	{\externalfigure[label][height=4cm,3.5cm]}
>>>>
>>>> \setlayer
>>>> 	[logo]
>>>> 	[preset=lefttop,
>>>> 	 hoffset=1.3cm,
>>>> 	 voffset=1.4cm]
>>>> 	{\externalfigure[wortmarke][height=0.3cm,width=6.5cm]}
>>>>
>>>> \starttext
>>>> \dorecurse{20}{\input knuth\par}
>>>> \stoptext
>>>>
>>>> Wolfgang
>>>
>>> Does this work in Mk II ?
>>>
>>
>> You can set your mind at rest and test it yourself.
>> The 'nuke_my_computer_by_running_context' module is no longer part of
>> the official distribution ;-)
>>
>> Best wishes,  Peter
> 
> 
> ... added to "goodies from the mailing list":
> 
> http://wiki.contextgarden.net/Humour
>
Mh, I wasn't aware that such an entry exists. Anyhow, my comment was not
meant as offence. In the past I also asked questions that I could have
easily answered myself. So take it as it was meant, take it with humour :-)

Peter

> 
> Steffen
> 
> ___________________________________________________________________________________
> 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
> ___________________________________________________________________________________
> 

___________________________________________________________________________________
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] 11+ messages in thread

* Re: Two layer in a document
  2010-10-01  9:00     ` Peter Rolf
  2010-10-01 10:08       ` Steffen Wolfrum
@ 2010-10-01 12:54       ` luigi scarso
  2010-10-01 16:19       ` Aditya Mahajan
  2 siblings, 0 replies; 11+ messages in thread
From: luigi scarso @ 2010-10-01 12:54 UTC (permalink / raw)
  To: mailing list for ConTeXt users

> The 'nuke_my_computer_by_running_context' module is no longer part of
> the official distribution ;-)
I must admit that I had some
'burn_my_computer_by_running_context' beta releases
under windows7 with luatex compiled by me (fat burst of laughters here)
on my EeePC T101.



-- 
luigi
___________________________________________________________________________________
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] 11+ messages in thread

* Re: Two layer in a document
  2010-10-01  9:00     ` Peter Rolf
  2010-10-01 10:08       ` Steffen Wolfrum
  2010-10-01 12:54       ` luigi scarso
@ 2010-10-01 16:19       ` Aditya Mahajan
  2 siblings, 0 replies; 11+ messages in thread
From: Aditya Mahajan @ 2010-10-01 16:19 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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



On Oct 1, 2010, at 5:00 AM, Peter Rolf <indiego@gmx.net> wrote:


>>> 
>>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>> 
>> Does this work in Mk II ?
>> 
> 
> You can set your mind at rest and test it yourself.
> The 'nuke_my_computer_by_running_context' module is no longer part of
> the official distribution ;-)

Does that mean that my filter module will never become part of the official distribution :((

Aditya

[-- Attachment #1.2: Type: text/html, Size: 1635 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] 11+ messages in thread

end of thread, other threads:[~2010-10-01 16:19 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-30  9:49 Two layer in a document Daniel Grycman
2010-09-30 12:26 ` R. Bastian
2010-09-30 13:16   ` Daniel Grycman
2010-09-30 17:42 ` Wolfgang Schuster
2010-10-01  7:51   ` R. Bastian
2010-10-01  8:02     ` Daniel Grycman
2010-10-01  9:00     ` Peter Rolf
2010-10-01 10:08       ` Steffen Wolfrum
2010-10-01 10:44         ` Peter Rolf
2010-10-01 12:54       ` luigi scarso
2010-10-01 16:19       ` 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).