ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* \setnumber
@ 2014-05-22  9:37 Werner Hintze
  2014-05-22 10:16 ` \setnumber Otared Kavian
  0 siblings, 1 reply; 8+ messages in thread
From: Werner Hintze @ 2014-05-22  9:37 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

I don’t unterstand \startfrontmatter, \starbodymatter etc.

I thought, the frontmatter has roman numerals, the bodymatter normal and 
so on. This is not automatically so. Now  founf how to make this, bus 
the problem is: I can’t reset the page number. I believed, it shoul 
work like this:

     \startfrontmatter
         \setupuserpagenumber[numberconversion=Romannumerals]
		% some stuff	
     \stopfrontmatter

     \startbodymatter
         \setupuserpagenumber[numberconversion=numbers]
         \setnumber[page]{1}
		%some stuff
	\stopbodymatter

This doesn’t work, may be because \setnumber is not a command in 
ConTeXt?

Where is my error?

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

[-- Attachment #2: Type: text/plain, Size: 485 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] 8+ messages in thread

* Re: \setnumber
  2014-05-22  9:37 \setnumber Werner Hintze
@ 2014-05-22 10:16 ` Otared Kavian
  2014-05-22 10:24   ` \setnumber Werner Hintze
  0 siblings, 1 reply; 8+ messages in thread
From: Otared Kavian @ 2014-05-22 10:16 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Hi,

In fact you should use 
	\setupuserpagenumber[number=1]
as in the following example:

%%%% begin example
\starttext
\startfrontmatter
\setupuserpagenumber[numberconversion=Romannumerals]
\input knuth.tex
\stopfrontmatter

\startbodymatter
\setupuserpagenumber[numberconversion=numbers]
\setupuserpagenumber[number=1]
\input ward.tex
\stopbodymatter
\stoptext
%%%% end example

Best regards: OK

On 22 May 2014, at 11:37, Werner Hintze <we.hintze@gmail.com> wrote:

> I don’t unterstand \startfrontmatter, \starbodymatter etc.
> 
> I thought, the frontmatter has roman numerals, the bodymatter normal and so on. This is not automatically so. Now founf how to make this, bus the problem is: I can’t reset the page number. I believed, it shoul work like this:
> 
> \startfrontmatter
>     \setupuserpagenumber[numberconversion=Romannumerals]
>     % some stuff    
> \stopfrontmatter
> 
> \startbodymatter
>     \setupuserpagenumber[numberconversion=numbers]
>     \setnumber[page]{1}
>     %some stuff
> \stopbodymatter
> This doesn’t work, may be because \setnumber is not a command in ConTeXt?
> 
> Where is my error?
> 
> ___________________________________________________________________________________
> 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
> ___________________________________________________________________________________


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

[-- Attachment #2: Type: text/plain, Size: 485 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] 8+ messages in thread

* Re: \setnumber
  2014-05-22 10:16 ` \setnumber Otared Kavian
@ 2014-05-22 10:24   ` Werner Hintze
  2014-05-22 10:32     ` \setnumber Otared Kavian
  0 siblings, 1 reply; 8+ messages in thread
From: Werner Hintze @ 2014-05-22 10:24 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Thank you! This works.

But tell me: How do you know this? The manual and the website don’t 
explain it this way…

Best regards

Werner


On 22 May 2014, at 12:16, Otared Kavian wrote:

> Hi,
>
> In fact you should use
> 	\setupuserpagenumber[number=1]
> as in the following example:
>
> %%%% begin example
> \starttext
> \startfrontmatter
> \setupuserpagenumber[numberconversion=Romannumerals]
> \input knuth.tex
> \stopfrontmatter
>
> \startbodymatter
> \setupuserpagenumber[numberconversion=numbers]
> \setupuserpagenumber[number=1]
> \input ward.tex
> \stopbodymatter
> \stoptext
> %%%% end example
>
> Best regards: OK
>
> On 22 May 2014, at 11:37, Werner Hintze <we.hintze@gmail.com> wrote:
>
>> I don’t unterstand \startfrontmatter, \starbodymatter etc.
>>
>> I thought, the frontmatter has roman numerals, the bodymatter normal 
>> and so on. This is not automatically so. Now founf how to make this, 
>> bus the problem is: I can’t reset the page number. I believed, it 
>> shoul work like this:
>>
>> \startfrontmatter
>>  \setupuserpagenumber[numberconversion=Romannumerals]
>>  % some stuff
>> \stopfrontmatter
>>
>> \startbodymatter
>>  \setupuserpagenumber[numberconversion=numbers]
>>  \setnumber[page]{1}
>>  %some stuff
>> \stopbodymatter
>> This doesn’t work, may be because \setnumber is not a command in 
>> ConTeXt?
>>
>> Where is my error?
>>
>> ___________________________________________________________________________________
>> 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
> ___________________________________________________________________________________

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

[-- Attachment #2: Type: text/plain, Size: 485 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] 8+ messages in thread

* Re: \setnumber
  2014-05-22 10:24   ` \setnumber Werner Hintze
@ 2014-05-22 10:32     ` Otared Kavian
  2014-05-22 10:44       ` \setnumber Werner Hintze
  0 siblings, 1 reply; 8+ messages in thread
From: Otared Kavian @ 2014-05-22 10:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Actually the issue was discussed some time ago and Wolfgang Schuster explained that.
In fact after sending you the previous answer I realized that he explained also that the right way is to use \defineconversionset and then reset the userpagenumber when necessary: look at the following example:

%%%% begin example
\defineconversionset[frontpart:pagenumber][][romannumerals]
\defineconversionset[bodypart:pagenumber] [][numbers]
\defineconversionset[backpart:pagenumber] [][characters]

\starttext
\startfrontmatter
\input knuth.tex
\stopfrontmatter

\startbodymatter
\setupuserpagenumber[number=1]
\input ward.tex
\stopbodymatter

\startbackmatter
\setupuserpagenumber[number=1]
\input tufte.tex
\stopbackmatter
\stoptext
%%%% end example

It would be nice to wikify things each time one learns something…

Best regards: OK

On 22 May 2014, at 12:24, Werner Hintze <we.hintze@gmail.com> wrote:

> Thank you! This works.
> 
> But tell me: How do you know this? The manual and the website don’t explain it this way…
> 
> Best regards
> 
> Werner
> 
> On 22 May 2014, at 12:16, Otared Kavian wrote:
> 
> Hi,
> 
> In fact you should use
> \setupuserpagenumber[number=1]
> as in the following example:
> 
> %%%% begin example
> \starttext
> \startfrontmatter
> \setupuserpagenumber[numberconversion=Romannumerals]
> \input knuth.tex
> \stopfrontmatter
> 
> \startbodymatter
> \setupuserpagenumber[numberconversion=numbers]
> \setupuserpagenumber[number=1]
> \input ward.tex
> \stopbodymatter
> \stoptext
> %%%% end example
> 
> Best regards: OK
> 
> On 22 May 2014, at 11:37, Werner Hintze we.hintze@gmail.com wrote:
> 
> I don’t unterstand \startfrontmatter, \starbodymatter etc.
> 
> I thought, the frontmatter has roman numerals, the bodymatter normal and so on. This is not automatically so. Now founf how to make this, bus the problem is: I can’t reset the page number. I believed, it shoul work like this:
> 
> \startfrontmatter
> \setupuserpagenumber[numberconversion=Romannumerals]
> % some stuff
> \stopfrontmatter
> 
> \startbodymatter
> \setupuserpagenumber[numberconversion=numbers]
> \setnumber[page]{1}
> %some stuff
> \stopbodymatter
> This doesn’t work, may be because \setnumber is not a command in ConTeXt?
> 
> Where is my error?
> 
> 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
> 
> ___________________________________________________________________________________
> 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
> ___________________________________________________________________________________


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

[-- Attachment #2: Type: text/plain, Size: 485 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] 8+ messages in thread

* Re: \setnumber
  2014-05-22 10:32     ` \setnumber Otared Kavian
@ 2014-05-22 10:44       ` Werner Hintze
  2014-05-22 10:56         ` \setnumber Otared Kavian
  0 siblings, 1 reply; 8+ messages in thread
From: Werner Hintze @ 2014-05-22 10:44 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Thank you once more! This looks better. It’s a pity that such things 
are not »wikified«… ;)

But there is  a new surprise: What is knute.tex, ward.tex and tufte.tex? 
Are there more of those texte? And how does one finde them?


On 22 May 2014, at 12:32, Otared Kavian wrote:

> Actually the issue was discussed some time ago and Wolfgang Schuster 
> explained that.
> In fact after sending you the previous answer I realized that he 
> explained also that the right way is to use \defineconversionset and 
> then reset the userpagenumber when necessary: look at the following 
> example:
>
> %%%% begin example
> \defineconversionset[frontpart:pagenumber][][romannumerals]
> \defineconversionset[bodypart:pagenumber] [][numbers]
> \defineconversionset[backpart:pagenumber] [][characters]
>
> \starttext
> \startfrontmatter
> \input knuth.tex
> \stopfrontmatter
>
> \startbodymatter
> \setupuserpagenumber[number=1]
> \input ward.tex
> \stopbodymatter
>
> \startbackmatter
> \setupuserpagenumber[number=1]
> \input tufte.tex
> \stopbackmatter
> \stoptext
> %%%% end example
>
> It would be nice to wikify things each time one learns something…
>
> Best regards: OK
>
> On 22 May 2014, at 12:24, Werner Hintze <we.hintze@gmail.com> wrote:
>
>> Thank you! This works.
>>
>> But tell me: How do you know this? The manual and the website don’t 
>> explain it this way…
>>
>> Best regards
>>
>> Werner
>>
>> On 22 May 2014, at 12:16, Otared Kavian wrote:
>>
>> Hi,
>>
>> In fact you should use
>> \setupuserpagenumber[number=1]
>> as in the following example:
>>
>> %%%% begin example
>> \starttext
>> \startfrontmatter
>> \setupuserpagenumber[numberconversion=Romannumerals]
>> \input knuth.tex
>> \stopfrontmatter
>>
>> \startbodymatter
>> \setupuserpagenumber[numberconversion=numbers]
>> \setupuserpagenumber[number=1]
>> \input ward.tex
>> \stopbodymatter
>> \stoptext
>> %%%% end example
>>
>> Best regards: OK
>>
>> On 22 May 2014, at 11:37, Werner Hintze we.hintze@gmail.com wrote:
>>
>> I don’t unterstand \startfrontmatter, \starbodymatter etc.
>>
>> I thought, the frontmatter has roman numerals, the bodymatter normal 
>> and so on. This is not automatically so. Now founf how to make this, 
>> bus the problem is: I can’t reset the page number. I believed, it 
>> shoul work like this:
>>
>> \startfrontmatter
>> \setupuserpagenumber[numberconversion=Romannumerals]
>> % some stuff
>> \stopfrontmatter
>>
>> \startbodymatter
>> \setupuserpagenumber[numberconversion=numbers]
>> \setnumber[page]{1}
>> %some stuff
>> \stopbodymatter
>> This doesn’t work, may be because \setnumber is not a command in 
>> ConTeXt?
>>
>> Where is my error?
>>
>> 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
>>
>> ___________________________________________________________________________________
>> 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
> ___________________________________________________________________________________

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

[-- Attachment #2: Type: text/plain, Size: 485 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] 8+ messages in thread

* Re: \setnumber
  2014-05-22 10:44       ` \setnumber Werner Hintze
@ 2014-05-22 10:56         ` Otared Kavian
  2014-05-22 11:50           ` \setnumber Werner Hintze
  0 siblings, 1 reply; 8+ messages in thread
From: Otared Kavian @ 2014-05-22 10:56 UTC (permalink / raw)
  To: mailing list for ConTeXt users


On 22 May 2014, at 12:44, Werner Hintze <we.hintze@gmail.com> wrote:

> Thank you once more! This looks better. It’s a pity that such things are not »wikified«… ;)

Once you think you have well understood something do not hesitate to wikify it…

> But there is a new surprise: What is knute.tex, ward.tex and tufte.tex? Are there more of those texte? And how does one finde them?

Look where you have installed the ConTeXt tree, in the following directory

	tex/texmf-context/tex/context/sample

you’ll find some other sample files which can be input for testing: they are very useful!

Best regards: OK
___________________________________________________________________________________
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] 8+ messages in thread

* Re: \setnumber
  2014-05-22 10:56         ` \setnumber Otared Kavian
@ 2014-05-22 11:50           ` Werner Hintze
  2014-05-22 12:32             ` \setnumber Otared Kavian
  0 siblings, 1 reply; 8+ messages in thread
From: Werner Hintze @ 2014-05-22 11:50 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

This is the problem: It works, but I don’t unterstand why. I make just 
my first steps with ConTeXt…

Anyway: I found out, that this is the best solution:

     \defineconversionset[frontpart:pagenumber][][romannumerals]
     \defineconversionset[bodypart:pagenumber][][numbers]
     \defineconversionset[backpart:pagenumber] [][characters
     \defineconversionset[appendix:pagenumber][][Characters]
     \setupuserpagenumber[numberconversionset=pagenumber,way=byblock]

Now it’s not nessecary to reset the pagenumber.

Thanks for the hint about the Sample texts.

Best regards.

WH


On 22 May 2014, at 12:56, Otared Kavian wrote:

> On 22 May 2014, at 12:44, Werner Hintze <we.hintze@gmail.com> wrote:
>
>> Thank you once more! This looks better. It’s a pity that such 
>> things are not »wikified«… ;)
>
> Once you think you have well understood something do not hesitate to 
> wikify it…
>
>> But there is a new surprise: What is knute.tex, ward.tex and 
>> tufte.tex? Are there more of those texte? And how does one finde 
>> them?
>
> Look where you have installed the ConTeXt tree, in the following 
> directory
>
> 	tex/texmf-context/tex/context/sample
>
> you’ll find some other sample files which can be input for testing: 
> they are very useful!
>
> Best regards: OK
> ___________________________________________________________________________________
> 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
> ___________________________________________________________________________________

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

[-- Attachment #2: Type: text/plain, Size: 485 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] 8+ messages in thread

* Re: \setnumber
  2014-05-22 11:50           ` \setnumber Werner Hintze
@ 2014-05-22 12:32             ` Otared Kavian
  0 siblings, 0 replies; 8+ messages in thread
From: Otared Kavian @ 2014-05-22 12:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Actually you are right: one can setup the userpage numbers by just saying way=byblock (no need to repeat numberconversionset).
Here is a complete example:

\defineconversionset[frontpart:pagenumber][][romannumerals]
\defineconversionset[bodypart:pagenumber] [][numbers]
\defineconversionset[backpart:pagenumber] [][characters]
\setupuserpagenumber[way=byblock]

\starttext

\startfrontmatter
\placecontent
\stopfrontmatter

\startbodymatter
\chapter{First chapter}
\input ward.tex
\section{A section}
\input dawkins.tex

\stopbodymatter

\startbackmatter
\chapter[title={Index},number=no]
\input tufte.tex
\stopbackmatter
\stoptext

Best regards: OK


On 22 May 2014, at 13:50, Werner Hintze <we.hintze@gmail.com> wrote:

> This is the problem: It works, but I don’t unterstand why. I make just my first steps with ConTeXt…
> 
> Anyway: I found out, that this is the best solution:
> 
> \defineconversionset[frontpart:pagenumber][][romannumerals]
> \defineconversionset[bodypart:pagenumber][][numbers]
> \defineconversionset[backpart:pagenumber] [][characters
> \defineconversionset[appendix:pagenumber][][Characters]
> \setupuserpagenumber[numberconversionset=pagenumber,way=byblock]
> Now it’s not nessecary to reset the pagenumber.
> 
> Thanks for the hint about the Sample texts.
> 
> Best regards.
> 
> WH
> 
> On 22 May 2014, at 12:56, Otared Kavian wrote:
> 
> On 22 May 2014, at 12:44, Werner Hintze we.hintze@gmail.com wrote:
> 
> Thank you once more! This looks better. It’s a pity that such things are not »wikified«… ;)
> 
> Once you think you have well understood something do not hesitate to wikify it…
> 
> But there is a new surprise: What is knute.tex, ward.tex and tufte.tex? Are there more of those texte? And how does one finde them?
> 
> Look where you have installed the ConTeXt tree, in the following directory
> 
> tex/texmf-context/tex/context/sample
> you’ll find some other sample files which can be input for testing: they are very useful!
> 
> Best regards: OK
> 
> 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
> ___________________________________________________________________________________


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

[-- Attachment #2: Type: text/plain, Size: 485 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] 8+ messages in thread

end of thread, other threads:[~2014-05-22 12:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-22  9:37 \setnumber Werner Hintze
2014-05-22 10:16 ` \setnumber Otared Kavian
2014-05-22 10:24   ` \setnumber Werner Hintze
2014-05-22 10:32     ` \setnumber Otared Kavian
2014-05-22 10:44       ` \setnumber Werner Hintze
2014-05-22 10:56         ` \setnumber Otared Kavian
2014-05-22 11:50           ` \setnumber Werner Hintze
2014-05-22 12:32             ` \setnumber Otared Kavian

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).