Re: [NTG-context] Myway on using mathalign

2006-04-03 Thread Aditya Mahajan
On Mon, 3 Apr 2006, Hans Hagen wrote:

> Taco Hoekwater wrote:
>> Aditya Mahajan wrote:
>>
>>> Hi,
>>>   I have written some examples on how to use startalign. Patrick has
>>> placed it on the garden. It can be downloaded from
>>>
>>> http://dl.contextgarden.net/myway/mathalign.pdf
>>>
>>
>> Excellent document!
>>
> indeed

Thank you for the encouragement.

>> Can we persuade you to write similar texts for the other math 
>> environments?

The only other math environments that I understand are matrix and 
cases. I will try to include matrix, esp how to emulate amsmath's 
aligned family of environments using context's matrix.

>> And you can remove the actual code for the intertext, it will be 
>> included in the core for the upcoming release.

I will change this once I do an update at my end. I can not install 
the beta right now, as I have some deadlines and do not want to break 
anything.


> watch the header line (esp last two pages)

Thanks for catching this.

> never use \setupheadertexts this way (in page stream) since you get a sync 
> problem then

I see that now.

> at the top of your document say:
>
> \setupheadertexts[section]
>
> or
>
> \setupheadertexts[{\getmarking[section][both]}]

Done that to my local copy. Will make a new version with some clean up 
and additions later this month.

Aditya

-- 
Aditya Mahajan, EECS Systems, University of Michigan
http://www.eecs.umich.edu/~adityam || Ph: 7342624008
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Miktex, Metapost and \loadfontfilesoncetrue

2006-04-03 Thread Mojca Miklavec
On 3/28/06, WN wrote:
> Hi,
>
> I am using Miktex (latest updated version) and the latest
> Context on WindowsXP (write18 enabled).
>
> This is what happens :
>
> 1) First run of texexec gives me
> ! Undefined control sequence
> l 1 \global \loadfontfileoncetrue

On 3/31/06, Taco Hoekwater wrote:
> For the original problem, I guess Mojca is closest to the
> actual problem. She herself has a continuing fight with
> btex/etex and textext(). If you can, you should try to post
> a 'recipe': make a minimal example in a clean directory,
> post that here along with what commands to run, and all
> of the results (logs, temp files) you get.

The perl script (texexec.pl) has some difficulties (sometimes the
problem with wrong format loding appears and sometimes not), but since
the ruby script is supposed to replace it anyway it doesn't really
make sense to lose time fixing old stuff.

Hans has just fixed the behaviour of newtexexec.rb, so I would suggest
you to do the following:

1. create a file texexec.bat with the following content:
texmfstart newtexexec.rb %*
and place that file to some arbitrary folder in PATH (but has to be in
front of MikTeX in PATH). So that after you type "texexec",
"texmfstart newtexexec.rb" will be executed.
You might have to download "texmfstart" if you don't have it yet
(cont-win.zip from pragma website, simply drop it into MikTeX bin
folder for example).

You may also try to politely ask the maintainer of MikTeX to include
the texmfstart.exe into MikTeX by default (the more users ask for it,
the more likely will be that he'll do that).

2. wait until Hans uploads the new beta & extract the content from
cont-tfm.zip into the MikTeX tree (to the proper place); I guess that
it should be enough if you only replace the content of /scripts/ruby/*
(Theoretically you can also wait for update in MikTeX, but that would
definitely take much longer.)


Then cross your fingers and try to compile your file again!

Mojca
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] definesortkey

2006-04-03 Thread Mojca Miklavec
On 4/4/06, Hans Hagen wrote:
> i added a few things to the sorter; can you try the beta?

Thanks, Hans! Much better. \ccaron is now handled OK (which wasn't the
case before), but č in utf-8 encoded file stil turns into
r e {index} {2} {} {ÄŤ} {2::0:0:0:0:0:0:0::1} {1}
and is sorted under A (as expected from the content of tui file, but
probably not as the user would like to have it).

Mojca
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Extending the black circled numbers

2006-04-03 Thread nico
Hello,

For those who know, I'm trying to have the DocBook callout mechanism with  
context. Basically, there are some numbers in lines of verbatim text, and  
below the verbatim text the numbers are used to explain the portion of the  
text (kind of footnote). Typically the numbers are rendered white in black  
circle. I could use the Dingbats numbers, but it is limited to 10, so that  
I emulated them with the following code to be able to go up to 99.

The questions I have:
- Is it the right way to do it in context (do I really need metafont?  
Simpler, smarter method?)
- What should I do to make them as anchors, so that it can be  
cross-referenced (I mean, one can click on a hot spot that jump to the  
number in the verbatim text).

Thanks for any hint,

\newdimen \cowidth

% Maximum size of the circle fits for number 99
\def\evalwidth%
   {\bgroup%
\setbox0\hbox{\small\bf{\ss 99}}%
\global\cowidth=1.2\wd0%
\egroup}

% Background black circle
\startuniqueMPgraphic{CoCircle}
   fill fullcircle scaled \overlaywidth withcolor black ;
\stopuniqueMPgraphic

\defineoverlay[cocircle][\uniqueMPgraphic{CoCircle}]

% Display the black circled number
\def\conum#1%
   {\evalwidth%
\framed[background=cocircle,strut=no,frame=off,
width=\the\cowidth,height=\the\cowidth,offset=overlay]
{\color[white]{\small\bf{\ss #1

\starttext

\dorecurse{99}{\conum{\recurselevel}, }

\stoptext

Regards,
BG
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Metafun - Metapost capacity exceeded

2006-04-03 Thread Hans Hagen
Thomas Engel wrote:
> Hello,
>
> I'm doing my first work with metafun to generate a switchgear layout
> from  a cvs file.
> During the run (texexec ) I get the message -  Metapost capacity
> exceeded  and a part of the drawing is missing.
>
> I followed the thread  -TeX capacity exceeded with metafun-
> and increased the memory size in texmf.cnf but this is not the solution!
>
> Any suggestion what's going wrong?
>   
texmfstart bin:scite.exe kpse:texmf.cnf

(or another editor)

will open the used texmf.cnf file, which may giv eyou a clue about the 
memory values
> btw.
> it is allowed to send the tex file to the list?
>   
sure

Hans 

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Voorjaarsbijeenkomst 12 en 13 mei

2006-04-03 Thread Hans Hagen
sjoerd siebinga wrote:
> Beste Willi,
>
> Ik ben dit jaar pas lid geworden van NTG en ik zou graag meegaan naar  
> de voorjaarsbijeenkomst. Ik heb echter twee vragen. Ten eerste, welke  
> kosten zijn er verbonden aan deze bijeenkomst? En ten tweede, hoe  
> moet ik me aanmelden?
>   
kosten: geen kosten

aanmelden: gewoon een mail naar willy

Hans

(for those who speak no dutch, this is about the coming ntg meeting)

Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] ntg-context Digest, Vol 22, Issue 1

2006-04-03 Thread Hans Hagen
[EMAIL PROTECTED] wrote:
>> ok! I have modified the batch-files.
>>
>> Next Problems: 
>>
>> texexec.ini is not found in 'context\config'
>> I copyed it in 'scripts\context\perl'
>> now it is found. 
>> 
>
> Is this normal? Or is this a symptome of the problem I am looking 
> for?
>   
it depends on what system you use; the settinsg default to 
tetex/fptex/gwtex so in that case no ini is needed

newtexexec.rb (which will replace texexec.pl) has no ini file but uses 
some heuristics to determine what environment it runs in
>  
>   
>> 'texexec --verbose' tries to compile all the files in the aktuel 
>> path.
>>
>> but
>>
>> 'texmfstart texexec.pl --verbose' works ok.
>>
>> same with
>>
>> 'texexec --make --all' doesn't work
>>
>> but 
>>
>> 'texmfstart texexec.pl --make --all' works!
>> 
good

on windows: you need to associate the pl suffix to perl
on linux you need to make  texexec into a script (suffixless)

on both you can best use texmfstart to launch the scripts since that's 
upward compatible (and in some respects this call is more clever); if 
needef you can create stubs with texmfstart (see manual)

>> formatfiles will generatet under '.\pdfetex' relativ to the aktual
>> path.
>> 
>
> I have found TWO different files 'texmf.cnf'.
> One in 'tex\texmf\web2c' the other in 'tex\texmf-local\web2c'.
> Meight this be an Problem? Which of them is the right one?
>   
normally the local one will be loaded first and variables set in the 
environment are ignored
> I have NOT found any file 'pdftex.cfg'.
> Ist this normal?
>   
yes, that file is gone in recent pdftex's (best not use an old pdfetex 
with a new tree
> In 'texmf.cnf' are some pathes written with '/' and '\' mixed.
> Should this be korrekted.
>   
normally no problem since kpse normalizes paths 
 
Hans 

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] definesortkey

2006-04-03 Thread Hans Hagen
Johan Sandblom wrote:
> Testfile below. Lowercase named letters (\aring etc) work fine.
> Uppercase, however, are sorted under the letter they resemble (A, O).
> Inputting the letter directly (å,ä,ö) make them be indexed before the
> start of the alphabetized index, not even under a, o.
>
> Regards, Johan
>
> \mainlanguage[sv] \readfile{sort-ini}{}{}
> \starttext
> a\index{a}
> z\index{z}
> å\index{å}
> ä\index{ä}
> ö\index{ö}
> \aring\index{\aring}
> \adiaeresis\index{\adiaeresis}
> \odiaeresis\index{\odiaeresis}
> A\index{A}
> Å\index{Å}
> Ä\index{Ä}
> Ö\index{Ö}
> \Aring\index{\Aring}
> \Adiaeresis\index{\Adiaeresis}
> \Odiaeresis\index{\Odiaeresis}
>
> \placeindex
>
> \stoptext
>   
i added a few things to the sorter; can you try the beta?

(no need to load the sort-ini file any more)

\mainlanguage[sv]

\starttext

a\index{a}
a\index{a}
z\index{z}
z\index{z}
å\index{å}
å\index{å}
å\index{å}
ä\index{ä}
ä\index{ä}
ä\index{ä}
ä\index{ä}
ö\index{ö}
ö\index{ö}
\aring\index{\aring}
\adiaeresis\index{\adiaeresis}
\odiaeresis\index{\odiaeresis}

A\index{A}
Å\index{Å}
Ä\index{Ä}
Ö\index{Ö}
\Aring\index{\Aring}
\Adiaeresis\index{\Adiaeresis}
\Odiaeresis\index{\Odiaeresis}

\placeindex

\stoptext


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] ntg-context Digest, Vol 22, Issue 1

2006-04-03 Thread wwl
> ok! I have modified the batch-files.
> 
> Next Problems: 
> 
> texexec.ini is not found in 'context\config'
> I copyed it in 'scripts\context\perl'
> now it is found. 

Is this normal? Or is this a symptome of the problem I am looking 
for?
 
> 'texexec --verbose' tries to compile all the files in the aktuel 
> path.
> 
> but
> 
> 'texmfstart texexec.pl --verbose' works ok.
> 
> same with
> 
> 'texexec --make --all' doesn't work
> 
> but 
> 
> 'texmfstart texexec.pl --make --all' works!
> 
> formatfiles will generatet under '.\pdfetex' relativ to the aktual
> path.

I have found TWO different files 'texmf.cnf'.
One in 'tex\texmf\web2c' the other in 'tex\texmf-local\web2c'.
Meight this be an Problem? Which of them is the right one?

I have NOT found any file 'pdftex.cfg'.
Ist this normal?

In 'texmf.cnf' are some pathes written with '/' and '\' mixed.
Should this be korrekted.

Wolfgang

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Metafun - Metapost capacity exceeded

2006-04-03 Thread Thomas Engel
Hello,

I'm doing my first work with metafun to generate a switchgear layout
from  a cvs file.
During the run (texexec ) I get the message -  Metapost capacity
exceeded  and a part of the drawing is missing.

I followed the thread  -TeX capacity exceeded with metafun-
and increased the memory size in texmf.cnf but this is not the solution!

Any suggestion what's going wrong?

btw.
it is allowed to send the tex file to the list?

Thanks

Thomas
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Voorjaarsbijeenkomst 12 en 13 mei

2006-04-03 Thread sjoerd siebinga
Beste Willi,

Ik ben dit jaar pas lid geworden van NTG en ik zou graag meegaan naar  
de voorjaarsbijeenkomst. Ik heb echter twee vragen. Ten eerste, welke  
kosten zijn er verbonden aan deze bijeenkomst? En ten tweede, hoe  
moet ik me aanmelden?

Groet Sjoerd


On 3 Apr 2006, at 19:03, Willi Egger wrote:

> Ik was in contcat met Oscar,
>
> t.a.v. partners ...
>
> De militaire kazerne ligt op ca 5 km afstand van de plaats waar de  
> veer
> aanmeert. Die plaats is geen echt dorp.
> Het zou dus nodig zijn, dat men een fiets ter beschikking heeft.  
> dat is
> meeneemt of in het eerste dorp huurt.
>
> t.a.v. aanmeldingen
>
> ik heb de aanmelding van Taco en Roland Kwee binnen verder is het  
> stil.
>
> t.a.v. programma op de website zetten.
>
> Erik heeft niet gereageerd op mijn mail van 31-03 j.l. Zal die evt met
> vakantie zijn?
> Wie kunnen anders dit laten doen?
>
> Groet Willi
>
>
>
>
> ___
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] documents to (print and) read

2006-04-03 Thread Jano Kula

> In my opinion, you should definately read:
> 
> "Context, an excursion"  http://www.pragma-ade.com/show-man-1.htm
> "TeXExec manual" http://www.pragma-ade.com/show-man-4.htm
> "Fonts Explained"http://www.pragma-ade.com/show-man-6.htm
> 
> And I heartily recommend the not-yet-finished but very beautiful:
> 
> "Typographic Programming" http://www.pragma-ade.com/show-man-39.htm

Thanks, I've put this selection to the special section on the wiki 
documentation page.

Jano

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Voorjaarsbijeenkomst 12 en 13 mei

2006-04-03 Thread Willi Egger
Sorry people not envolved in this issue, I missed the correct 
mailinglist-address!

Willi

Willi Egger wrote:

>Ik was in contcat met Oscar,
>
>t.a.v. partners ...
>
>De militaire kazerne ligt op ca 5 km afstand van de plaats waar de veer 
>aanmeert. Die plaats is geen echt dorp.
>Het zou dus nodig zijn, dat men een fiets ter beschikking heeft. dat is 
>meeneemt of in het eerste dorp huurt.
>
>t.a.v. aanmeldingen
>
>ik heb de aanmelding van Taco en Roland Kwee binnen verder is het stil.
>
>t.a.v. programma op de website zetten.
>
>Erik heeft niet gereageerd op mijn mail van 31-03 j.l. Zal die evt met 
>vakantie zijn?
>Wie kunnen anders dit laten doen?
>
>Groet Willi
>
>
>
>
>___
>ntg-context mailing list
>ntg-context@ntg.nl
>http://www.ntg.nl/mailman/listinfo/ntg-context
>  
>
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Voorjaarsbijeenkomst 12 en 13 mei

2006-04-03 Thread Willi Egger
Ik was in contcat met Oscar,

t.a.v. partners ...

De militaire kazerne ligt op ca 5 km afstand van de plaats waar de veer 
aanmeert. Die plaats is geen echt dorp.
Het zou dus nodig zijn, dat men een fiets ter beschikking heeft. dat is 
meeneemt of in het eerste dorp huurt.

t.a.v. aanmeldingen

ik heb de aanmelding van Taco en Roland Kwee binnen verder is het stil.

t.a.v. programma op de website zetten.

Erik heeft niet gereageerd op mijn mail van 31-03 j.l. Zal die evt met 
vakantie zijn?
Wie kunnen anders dit laten doen?

Groet Willi




___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] XML and references

2006-04-03 Thread Johannes Graumann
Hans,

When this is done, I will have to make a trip to Zwolle and buy you a beer!
Thank you once again!

Joh

Hans Hagen wrote:

> Johannes Graumann wrote:
>> Hello all,
>>
>> I'm trying to interpret something like
>> 
>>   The problem of the complex protein mixture
>>   
>> 
>>   
>> 
>>
>> With the follwing mapping rules and am failing:
>> \defineXMLenvironment
>>   [section]
>>   {
>>   \defineXMLargument
>> [title]
>> [\XMLpar{section}{label}{}]
>>   
> wrong argument, should be [name=]
>> {\section}
>>   \defineXMLenvironment
>> [content]
>> {}{}
>>   }
>>   {}
>> \defineXMLargument
>>   [ref]
>>   {\textreference[\XMLpar{ref}{name}{}]}
>>   
> wrong command \textreference should be \in
>> I would appreciate any insight into my folly ...
>>
>> Thanks, Joh
>>   
> \defineXMLenvironment
>   [section]
>   {\setups{section:define}}
>   {}
> 
> \startsetups section:define
>   \defineXMLargument
> [title]
> [label=]
> {\expanded{\section[\XMLpar{section}{label}{}]}}
>   \defineXMLprocess
> [content]
> \stopsetups
> 
> \defineXMLenvironmentsave
>   [pageref]
>   [name=]
>   {}
>   {\at{\XMLflush{pageref}}[\XMLop{name}]}
> \defineXMLenvironmentsave
>   [textref]
>   [name=]
>   {}
>   {\in{\XMLflush{textref}}[\XMLop{name}]}
> 
> \starttext
> 
> \startXMLdata
> 
>   The problem of the complex protein mixture
>   
> 
> 
> page
> chapter
>   
> 
> \stopXMLdata
> 
> \stoptext
> 
> 
> -
>   Hans Hagen | PRAGMA ADE
>   Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>  tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
>  | www.pragma-pod.nl
> -


___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Problem with encoding, XML and writetolist...

2006-04-03 Thread Martin Kolařík
OK, expansion is not encoding, but expansion in this place here is not a
problem (I suppose). The section head is good, but the TOC entry not. So the
inner expansion (or conversion or detokenization or so) around writetolist
is probably affected by something, what now I cannot handle.

And what is strange -- Hans did not reproduce the behaviour (as he wrote),
so I am asking a trying to find the problem on my side (or lucky thougth
:-)...

Thank for your ideas and help,

Martin

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Mojca Miklavec
Sent: Monday, April 03, 2006 4:25 PM
To: [EMAIL PROTECTED]; mailing list for ConTeXt users
Subject: Re: [NTG-context] Problem with encoding, XML and writetolist...


On 2/28/06, Martin Kolařík wrote:
> Hi all,
>
> I have problem with chars encoding now; I have updated ConTeXt sometimes
in
> January; before the time I was using old (year) version. In this
> prehistorical version the problem was not present.
>
> What is the stuff? The following code generates content with titles
without
> spaces -- accented characters are replaced with \char XXX variant, so
during
> reading TUI line TeX gobbles a space after XXX as a part of 
syntax
> rule.
>
> Can I do something? With encoding? With XML?

Encoding has "nothing" to do with it. I don't really understand the
\[un]expanded commands in TeX, but this part could theoretically be
problematic:
 {\expanded
{\section{\XMLflush{title

Consider the following (encoding-independent) minimal example, just in
case that this can help any of the gurus to understand the problem:

\defineXMLenvironment
 [chapter]
 {\defineXMLsave[title]}
 {\expanded
{\section{\XMLflush{title

\starttext
\startbuffer

 $a+b$

\stopbuffer

\processXMLbuffer
\placecontent[criterium=all]
\stoptext

The entry in TOC is different from the title (one is in math mode and
the other one writen with dollars - literally).

Mojca


> Thank you very much, have a nice day, Martin
>
> Code:
>
> \defineXMLenvironment
>   [chapter]
>   {\defineXMLsave[title]}
>   {\expanded
>  {\chapter\XMLflush{title}}}
>
> \starttext
>
> \startbuffer
>
> 
>   Ahojá hojč kuna
> 
>
> \stopbuffer
>
> \processXMLbuffer
>
> \completecontent[criterium=all]
>
> \stoptext
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Problem with encoding, XML and writetolist...

2006-04-03 Thread Mojca Miklavec
On 2/28/06, Martin Kolařík wrote:
> Hi all,
>
> I have problem with chars encoding now; I have updated ConTeXt sometimes in
> January; before the time I was using old (year) version. In this
> prehistorical version the problem was not present.
>
> What is the stuff? The following code generates content with titles without
> spaces -- accented characters are replaced with \char XXX variant, so during
> reading TUI line TeX gobbles a space after XXX as a part of  syntax
> rule.
>
> Can I do something? With encoding? With XML?

Encoding has "nothing" to do with it. I don't really understand the
\[un]expanded commands in TeX, but this part could theoretically be
problematic:
 {\expanded
{\section{\XMLflush{title

Consider the following (encoding-independent) minimal example, just in
case that this can help any of the gurus to understand the problem:

\defineXMLenvironment
 [chapter]
 {\defineXMLsave[title]}
 {\expanded
{\section{\XMLflush{title

\starttext
\startbuffer

 $a+b$

\stopbuffer

\processXMLbuffer
\placecontent[criterium=all]
\stoptext

The entry in TOC is different from the title (one is in math mode and
the other one writen with dollars - literally).

Mojca


> Thank you very much, have a nice day, Martin
>
> Code:
>
> \defineXMLenvironment
>   [chapter]
>   {\defineXMLsave[title]}
>   {\expanded
>  {\chapter\XMLflush{title}}}
>
> \starttext
>
> \startbuffer
>
> 
>   Ahojá hojč kuna
> 
>
> \stopbuffer
>
> \processXMLbuffer
>
> \completecontent[criterium=all]
>
> \stoptext
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] ! I can't find file `ec-lmr12'. Again!

2006-04-03 Thread Jilani Khaldi

>no, any place is fine.
>  
>
That's ok. The context installation struggle is finally over. Waiting 
for the next ones...
Thank you very much for your help.
jk

--
Jilani KHALDI
http://jkhaldi.oltrelinux.com

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] ! I can't find file `ec-lmr12'. Again!

2006-04-03 Thread Jilani Khaldi

>also make sure you have a new context installed, the one which comes
>with tetex 3.0 has problems with some lm fontmaps/files
>  
>
How to install tetex-3.0 without context support, or better, what are 
the directories/files to remove and where to unzip cont-tmf.zip?
Thanks!

jk

--
Jilani KHALDI
http://jkhaldi.oltrelinux.com

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Problem with encoding, XML and writetolist...

2006-04-03 Thread Martin Kolařík
Thanks Mojca, I downloaded your regime file; now I will not need write it
myself :-)

Martin

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Mojca Miklavec
Sent: Monday, April 03, 2006 2:33 PM
To: [EMAIL PROTECTED]; mailing list for ConTeXt users; Hans Hagen
Subject: Re: [NTG-context] Problem with encoding, XML and writetolist...


On 4/3/06, Martin Kolařík wrote:

> which is not good. And I am not able, when not using cp1250.tcx, recode
win1250 (default for win) to latin2. There I am able to write regime for
myself (cp1250), but I suppose, that whenever characters will not expand to
\char XXX form, cp1250.tcx still will be working and usable.

Hans, I would guess that more than 50% of Slavic Windows users (ie.
Slovenian, Croatian, Chech, Slovak, ...) use the cp1250 encoding
(including me). Would it be possible to add at least this file
http://pub.mojca.org/tex/enco/contextbase/regi-cp1250.tex to the
default ConTeXt distribution? (with "synonyms" windows-1250 and
cp1250).

This has probably nothing to do with the problem described here, but I
believe that many users would appreciate to have that "encoding"
(called regime in ConTeXt) available.

> when I added \mainlanguage[cz] before \enableregime[windows] in 8bit.tex
and run
> texexec with --translate=cp1250cs, I got:

\enableregime[windows] is cp1252 (Western European Windows) not cp1250
(Central European Windows), --translate=cp1250cs is cp1250 (supposing
that you don't use \enableregime[windows], but the default one):
everything will be mixed up if you use both simultaneously.

If you download the file mentioned above (place it into the current
directory or somewhere in the TeX tree and refresh the filename
database) or if Hans adds it to the distribution, you can use
\input regi-cp1250
\enableregime[cp1250]

This probably won't solve your problem with missing spaces (didn't try
it), but you'll have the proper encoding.

Mojca
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Problem with encoding, XML and writetolist...

2006-04-03 Thread Mojca Miklavec
On 4/3/06, Martin Kolařík wrote:

> which is not good. And I am not able, when not using cp1250.tcx, recode 
> win1250 (default for win) to latin2. There I am able to write regime for 
> myself (cp1250), but I suppose, that whenever characters will not expand to 
> \char XXX form, cp1250.tcx still will be working and usable.

Hans, I would guess that more than 50% of Slavic Windows users (ie.
Slovenian, Croatian, Chech, Slovak, ...) use the cp1250 encoding
(including me). Would it be possible to add at least this file
http://pub.mojca.org/tex/enco/contextbase/regi-cp1250.tex to the
default ConTeXt distribution? (with "synonyms" windows-1250 and
cp1250).

This has probably nothing to do with the problem described here, but I
believe that many users would appreciate to have that "encoding"
(called regime in ConTeXt) available.

> when I added \mainlanguage[cz] before \enableregime[windows] in 8bit.tex and 
> run
> texexec with --translate=cp1250cs, I got:

\enableregime[windows] is cp1252 (Western European Windows) not cp1250
(Central European Windows), --translate=cp1250cs is cp1250 (supposing
that you don't use \enableregime[windows], but the default one):
everything will be mixed up if you use both simultaneously.

If you download the file mentioned above (place it into the current
directory or somewhere in the TeX tree and refresh the filename
database) or if Hans adds it to the distribution, you can use
\input regi-cp1250
\enableregime[cp1250]

This probably won't solve your problem with missing spaces (didn't try
it), but you'll have the proper encoding.

Mojca
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] ! I can't find file `ec-lmr12'. Again!

2006-04-03 Thread Taco Hoekwater


Jilani Khaldi wrote:
> 
> Well, I have reinstalled teTeX again from source and it wroks (LaTeX 
> speeking). I have downloaded cont-tmf.zip unzipped it into 
> /usr/local/teTeX/texmf-local and did "texexec --make -all" (1). No problem.
> ConTeXt does not work and asked for "ec-lmr*.tfm". Now the questions are:
> 1. is "lm.zip" is the correct font package to install, and where to 
> install (unzip) it?

Yes, it is the right file.

Like the Wiki page says, the installation  instructions are
"in the faq":  http://www.tex.ac.uk/cgi-bin/texfaq2html?label=uselmfonts


> 2. what is the next step(s)?

There is no next step after installation.

> (1): is there a particulary directory where to run "texexec --make -all"?

no, any place is fine.

Cheers, Taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] ! I can't find file `ec-lmr12'. Again!

2006-04-03 Thread Jilani Khaldi

>Can you (do a search on your harddisk and) tell us the exact location
>of the file ec-lmr10.tfm ?
>  
>
Well, I have reinstalled teTeX again from source and it wroks (LaTeX 
speeking). I have downloaded cont-tmf.zip unzipped it into 
/usr/local/teTeX/texmf-local and did "texexec --make -all" (1). No problem.
ConTeXt does not work and asked for "ec-lmr*.tfm". Now the questions are:
1. is "lm.zip" is the correct font package to install, and where to 
install (unzip) it?
2. what is the next step(s)?
Many thanks!

jk

(1): is there a particulary directory where to run "texexec --make -all"?

--
Jilani KHALDI
http://jkhaldi.oltrelinux.com

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Problem with encoding, XML and writetolist...

2006-04-03 Thread Martin Kolařík
Thanks Vit, your solution perfectly works (I tried it :-); but not for me -- in 
my case (and in another mine cases too) I use XML code, which remaps some 
pieces to \chapter. And during the expansion accented characters are replaced 
with "\char xxx", this is written to tui/tuo file and read back without spaces 
-- the spaces are gobbled by TeX's number syntactic rule...

But, Hans, when I added \mainlanguage[cz] before \enableregime[windows] in 
8bit.tex and run texexec with --translate=cp1250cs, I got:

! Illegal parameter number in definition of \@@expanded.

   \crcr
\oalign [EMAIL PROTECTED] \lineskip .25ex\ialign {##\crcr
  #1\crcr }}
\encircled ...\tx #1}}\hfil \crcr \mathhexbox 20D}
  }
\XML:dat:title ->Ä
  luŁouŔcÝ koný ˙pÝ
\expanded ...\long \xdef \@@expanded {\noexpand #1
  }\@@expanded
l.3 

Thank you,

Martin

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Vit Zyka
Sent: Monday, April 03, 2006 1:18 PM
To: mailing list for ConTeXt users
Subject: Re: [NTG-context] Problem with encoding, XML and writetolist...


Hans Hagen wrote:
> Martin Kolařík wrote:
> 
>>Aha, here maybe will be the solution :-)
>>
>>I'am using standalone Win32 distribution from Pragma and I'm running texexec 
>>with --translate=cp1252cs. Typescripts use il2, which corresponds to fonts, 
>>of course. If I run the code without XML (if I transcribe XML to \chapter 
>>etc.) I get toc entry correctly too.
>>
>>Where should I look for more? What is natural.ctx?
>>  
> 
> this is a one-to-one translation vector, and the one standard used by 
> context; forget about all those other mappings, they can be done using 
> regimes; you can use an il2 input regime, and any (resonable) font encoding, 
 >
 > Hans

specifically for you:

\mainlanguage[cz]
\enableregime[windows] % or \enableregime[latin2] for il2

is enough for Latin Modern and Czech.

Vit

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Problem with encoding, XML and writetolist...

2006-04-03 Thread Vit Zyka
Hans Hagen wrote:
> Martin Kolařík wrote:
> 
>>Aha, here maybe will be the solution :-)
>>
>>I'am using standalone Win32 distribution from Pragma and I'm running texexec 
>>with --translate=cp1252cs. Typescripts use il2, which corresponds to fonts, 
>>of course. If I run the code without XML (if I transcribe XML to \chapter 
>>etc.) I get toc entry correctly too.
>>
>>Where should I look for more? What is natural.ctx?
>>  
> 
> this is a one-to-one translation vector, and the one standard used by 
> context; forget about all those other mappings, they can be done using 
> regimes; you can use an il2 input regime, and any (resonable) font encoding, 
 >
 > Hans

specifically for you:

\mainlanguage[cz]
\enableregime[windows] % or \enableregime[latin2] for il2

is enough for Latin Modern and Czech.

Vit

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Problem with encoding, XML and writetolist...

2006-04-03 Thread Martin Kolařík
I was confused with typo (ctx=tcx :-) but I still did not succeed. I now 
installed last cont-tfm, I tried 8bit.tex (from the example) and nothing :-(

I am using now directly "texexec 8bit.tex", which leads to natural.tcx and 
english interface, without anything more. I tried to change regimes in 8bit.tex 
too, and the characters were changing. So regimes are OK, result not.

Texexec still reports:

chapter : 1 ÄluŁou\char 163 c\char 237  kon\char 165  \char 250 p\char 
237

which is not good. And I am not able, when not using cp1250.tcx, recode win1250 
(default for win) to latin2. There I am able to write regime for myself 
(cp1250), but I suppose, that whenever characters will not expand to \char XXX 
form, cp1250.tcx still will be working and usable.

Cannot be set somewhere something badly in my local context configuration?

Thank you,

Martin

-Original Message-
From: Hans Hagen [mailto:[EMAIL PROTECTED]
Sent: Monday, April 03, 2006 11:57 AM
To: [EMAIL PROTECTED]; mailing list for ConTeXt users
Subject: Re: [NTG-context] Problem with encoding, XML and writetolist...


Martin Kolařík wrote:
> Aha, here maybe will be the solution :-)
>
> I'am using standalone Win32 distribution from Pragma and I'm running texexec 
> with --translate=cp1252cs. Typescripts use il2, which corresponds to fonts, 
> of course. If I run the code without XML (if I transcribe XML to \chapter 
> etc.) I get toc entry correctly too.
>
> Where should I look for more? What is natural.ctx?
>   
this is a one-to-one translation vector, and the one standard used by context; 
forget about all those other mappings, they can be done using regimes; you can 
use an il2 input regime, and any (resonable) font encoding, 

Hans 

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-


___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] ! I can't find file `ec-lmr12'. Again!

2006-04-03 Thread frantisek holop
hmm, on Sun, Apr 02, 2006 at 10:34:44PM +0200, Jilani Khaldi said that
> 
> >You skipped section 5: Install a Latin Modern font update
> >  
> >
> I downloaded "lm.zip" and I followed the the indication in the "readme" 
> file, but the error persists. Any new hint?

did you do a texhash after?
many file names were changed in lm, i think it's better to clear the
lm directories before copying the new files so they don't mix.

also make sure you have a new context installed, the one which comes
with tetex 3.0 has problems with some lm fontmaps/files

-f
-- 
he who fights & runs away will live to fight another day.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Problem with encoding, XML and writetolist...

2006-04-03 Thread Hans Hagen
Martin Kolařík wrote:
> Aha, here maybe will be the solution :-)
>
> I'am using standalone Win32 distribution from Pragma and I'm running texexec 
> with --translate=cp1252cs. Typescripts use il2, which corresponds to fonts, 
> of course. If I run the code without XML (if I transcribe XML to \chapter 
> etc.) I get toc entry correctly too.
>
> Where should I look for more? What is natural.ctx?
>   
this is a one-to-one translation vector, and the one standard used by context; 
forget about all those other mappings, they can be done using regimes; you can 
use an il2 input regime, and any (resonable) font encoding, 

Hans 

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Different pagebreaks for component and whole document

2006-04-03 Thread Hans Hagen
Aditya Mahajan wrote:
> Hi,
>   I have run into a strange kind of a problem and I am not sure on how 
> to debug to figure out what is going wrong. Maybe someone with more 
> experience with context can help me here.
>
> I have the following document structure
>
> project: main.tex
> environment:env_main.tex
> products: assignments.tex
>handouts.tex
>
> project: assignments.tex
> components:assignment-01.tex
> assignment-02.tex
>   and so on
>
> project: handouts.tex
> component: handout-01.tex
> handout-02.tex
> and so on.
>
> Each component starts with \title which does a page break. There are 
> no local setups in any component. I expected that each component will 
> be typed out in the same manner, whether I compile the a component, 
> a product or the entire project. It turns out this is not the case.
>
> The first page of handout-01.tex is different when I compile the 
> project (main.tex). The pagebreak is set at a different place and I 
> get ugly page break at the end. If I compile handouts.tex or 
> handout-01.tex, the page breaks are same and there is no ugly 
> pagebreak at the end.
>
> Is it possible that such a behaviour is due to the length of the 
> document. main.pdf is 105 pages long, while handout-01.pdf is 4 pages 
> and handouts.pdf is 14 pages. It seems that due to the large length of 
> main.pdf, context is not trying hard enough to get good page break.
> Even a manual \page[disable] does not prevent the ugly pagebreak for 
> main.tex.
>
> I am totally confused by this behaviour. Any explainations or 
> suggestions?
>
>   
it may be related to write nodes, marks etc that are flushed 
differently; if you can make a minimal example ...

Hans


-- 

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Problem with encoding, XML and writetolist...

2006-04-03 Thread Martin Kolařík
Aha, here maybe will be the solution :-)

I'am using standalone Win32 distribution from Pragma and I'm running texexec 
with --translate=cp1252cs. Typescripts use il2, which corresponds to fonts, of 
course. If I run the code without XML (if I transcribe XML to \chapter etc.) I 
get toc entry correctly too.

Where should I look for more? What is natural.ctx?

Thank you,

Martin


-Original Message-
From: Hans Hagen [mailto:[EMAIL PROTECTED]
Sent: Monday, April 03, 2006 10:36 AM
To: [EMAIL PROTECTED]; mailing list for ConTeXt users
Subject: Re: [NTG-context] Problem with encoding, XML and writetolist...


Martin Kolařík wrote:
> Hi Hans,
>
> the test file is attached,
>   
what input encoding is used here? 

i get the same chapter title as toc entry 

is your tex configured for 8 bit (natural.ctx) 

Hans 

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-


___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] XML and references

2006-04-03 Thread Hans Hagen
Johannes Graumann wrote:
> Hello all,
>
> I'm trying to interpret something like
> 
>   The problem of the complex protein mixture
>   
> 
>   
> 
>
> With the follwing mapping rules and am failing:
> \defineXMLenvironment
>   [section]
>   {
>   \defineXMLargument
> [title]
> [\XMLpar{section}{label}{}]
>   
wrong argument, should be [name=]
> {\section}
>   \defineXMLenvironment
> [content]
> {}{}
>   }
>   {}
> \defineXMLargument  
>   [ref]
>   {\textreference[\XMLpar{ref}{name}{}]}
>   
wrong command \textreference should be \in
> I would appreciate any insight into my folly ...
>
> Thanks, Joh
>   
\defineXMLenvironment
  [section]
  {\setups{section:define}}
  {}

\startsetups section:define
  \defineXMLargument
[title]
[label=]
{\expanded{\section[\XMLpar{section}{label}{}]}}
  \defineXMLprocess
[content]
\stopsetups

\defineXMLenvironmentsave
  [pageref]
  [name=]
  {}
  {\at{\XMLflush{pageref}}[\XMLop{name}]}
\defineXMLenvironmentsave
  [textref]
  [name=]
  {}
  {\in{\XMLflush{textref}}[\XMLop{name}]}

\starttext

\startXMLdata

  The problem of the complex protein mixture
  


page
chapter
  

\stopXMLdata

\stoptext


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Problem with encoding, XML and writetolist...

2006-04-03 Thread Hans Hagen
Martin Kolařík wrote:
> Hi Hans,
>
> the test file is attached,
>   
what input encoding is used here? 

i get the same chapter title as toc entry 

is your tex configured for 8 bit (natural.ctx) 

Hans 

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Different pagebreaks for component and whole document

2006-04-03 Thread Taco Hoekwater


Aditya Mahajan wrote:
> 
> Each component starts with \title which does a page break. There are 
> no local setups in any component. I expected that each component will 
> be typed out in the same manner, whether I compile the a component, 
> a product or the entire project.

The fact that the page breaks are different indicates an
imperfection somewhere in the internal macro definitions
for \startproject c.s., and is definately not related to
the length of your document.

But, since you are not really supposed to compile the project
file in the first place, fixing this will be very low on the
list of to-be-fixed problems, I wager. The manual is not as
clear on that as it could be (I suppose), but you are definately
not expected to be compiling project definition files.

Cheers, Taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Myway on using mathalign

2006-04-03 Thread Hans Hagen
Taco Hoekwater wrote:
> Aditya Mahajan wrote:
>   
>> Hi,
>>   I have written some examples on how to use startalign. Patrick has 
>> placed it on the garden. It can be downloaded from
>>
>> http://dl.contextgarden.net/myway/mathalign.pdf
>> 
>
> Excellent document! Can we persuade you to write similar texts
>   
indeed
> for the other math environments? And you can remove the actual
> code for the intertext, it will be included in the core for
> the upcoming release.
>   
watch the header line (esp last two pages)

never use \setupheadertexts this way (in page stream) since you get a sync 
problem then 

at the top of your document say: 

\setupheadertexts[section]

or 

\setupheadertexts[{\getmarking[section][both]}]

Hans 

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] XML and references

2006-04-03 Thread Taco Hoekwater


Johannes Graumann wrote:
> Hello all,
> 
> I'm trying to interpret something like
> 
>   The problem of the complex protein mixture
>   
> 
>   
> 
> 

1. you never match the section label to the \section head, so you
need something like this:

\defineXMLargument
  [title]
  [\XMLpar{section}{label}{}]
  {\section[\XMLpar{section}{label}{}]}

2. \textreference *creates* a reference instead of referring
to one, so you need

\defineXMLargument
  [ref]
  {\in[\XMLpar{ref}{name}{}]}

Cheers, Taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Figure Libraries

2006-04-03 Thread Taco Hoekwater


David Arnold wrote:
> My workaround was to rename the second instance \externalfigure 
> [sec4foura], but I am wondering a bit about this mechanism.

You really should use unique names for your figures, you know.
How else can you differentiate between the one in section 4
and the one in section 2?

Greetings, Taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] ! I can't find file `ec-lmr12'. Again!

2006-04-03 Thread Taco Hoekwater


Jilani Khaldi wrote:
>>You skipped section 5: Install a Latin Modern font update
>> 
> I downloaded "lm.zip" and I followed the the indication in the "readme" 
> file, but the error persists. Any new hint?

Can you (do a search on your harddisk and) tell us the exact location
of the file ec-lmr10.tfm ?

Greetings, Taco



___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Myway on using mathalign

2006-04-03 Thread Taco Hoekwater


Aditya Mahajan wrote:
> Hi,
>   I have written some examples on how to use startalign. Patrick has 
> placed it on the garden. It can be downloaded from
> 
> http://dl.contextgarden.net/myway/mathalign.pdf

Excellent document! Can we persuade you to write similar texts
for the other math environments? And you can remove the actual
code for the intertext, it will be included in the core for
the upcoming release.

Cheers, Taco

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context