Re: [NTG-context] Usage of \setupfootnotedefinition?

2007-08-01 Thread Albrecht Kauffmann
Hi Matt,

this is my definition of footnotes:

\def\withdot#1{#1.\kern.3em}
\setupfootnotes[rule=off,numbercommand=\withdot,way=bytext]
\setupfootnotedefinition[location=serried]
\setupfootnotedefinition[before={\hangindent=.5pc \hangafter=1}]
\definedescription[footnotenumbering][numberstyle=\tf,numberindent=no]

Greetings
Albrecht


On Tue, 31 Jul 2007, Matt Gushee wrote:

 Hi, all--

 Can anyone point me to a realistic example(s) of
 \setupfootnotedefinition? I think it may help to solve a problem I am
 working with, but don't understand precisely how to use it.

 --
 Matt Gushee
 ___
 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  : https://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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] extra math symbols and alignment

2007-08-01 Thread WN

Hi Aditya

Basically I want to include the RSFS font and some user defined symbols 
from txexa as explained in my previous email.


I did some testing with the test code which I send and found the cause 
of the problem, however no solution yet.

The cause of the problem lies in the line where I say

\definetypeface[MyFace] [mm] [math] [modern] *[modern] *[encoding=ec]

This will enable the user defined symbols and all the math symbols as 
shown via \showmathcharacters are correct.


However all the matrix, mathmatrix environments don't adhere to the 
aligment I specify except for the first option i.e.
when I say \startmatrix[align={right, etc  }] everything is aligned 
to the right but the other aligment options are ignored.


When I substitute *[modern]* with *[default]  *as in

\definetypeface[MyFace] [mm] [math] [modern] *[default] *[encoding=ec]

In this instance all the aligment as specified in the matrix, mathmatrix 
environments work. However some of the
math symbols like \Delta are incorrect. And my user defined symbols are 
also incorrect.


Hope you can find a solution.
Kind regards
Wim

___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Usage of \setupfootnotedefinition?

2007-08-01 Thread Steffen Wolfrum
Hi Matt,


you may also look at the following, although not too realistic -)

\def\myFNnumber#1{\hskip2em\inframed[width=1em,offset=. 
0em,frame=on,align=left]{#1} \hskip1em}
  \setupfootnotedefinition[command= 
\myFNnumber,indentnext=yes,location=serried]

Steffen


Am 01.08.2007 um 01:48 schrieb Matt Gushee:

 Hi, all--

 Can anyone point me to a realistic example(s) of
 \setupfootnotedefinition? I think it may help to solve a problem I am
 working with, but don't understand precisely how to use it.

 -- 
 Matt Gushee
 __ 
 _
 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  : https://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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] extra math symbols and alignment

2007-08-01 Thread WN

Hi Aditya

I tried your code and performed more tests. My first tests show your fix
works. But than I added a \section{} in my test code and I am sorry to 
say that

the math matrix alignment does not work at that point.
However the extra math fonts I defined still do work.

General observation
I thought from the examples like using the RSFS font on the wiki page
http://wiki.contextgarden.net/rsfs that using other fonts for math 
should be easy.
Thinking about this specific example I now understand that this example 
is flawed

as some default math characters are also overwritten.

Thanks for your help
Wim

PS
Attached my modified test code along with the map file for the RSFS fonts.
For the RSFS fonts I am using \definedfont and not using the definebodyfont.


Hi Wim,

On Tue, 31 Jul 2007, WN wrote:

see previous email



Phew! This was a hard to find bug. First, to illustrate the bug:
\definetypeface[mainface] [rm] [serif] [modern] [default] [encoding=texansi]
\definetypeface[mainface] [mm] [math]  [modern] [modern]  [encoding=texansi]

\setupbodyfont[mainface,11pt]

\loggingall

\starttext
\startformula
A = \startmatrix[align={left,right}]
  \NC 11 \NC 2  \NR
  \NC 2  \NC -5 \NR
\stopmatrix
\stopformula

\stoptext

Try with and without the font declarations. With the font 
declarations, you lost matrix alignment. The reason is that 
\startmatrix uses \scratchcounter, which gets rewritten when using a 
font collection other than default. One fix it to replace 
\scractcounter in matrix constructions by some other counter, for 
example \!!counta.


So, add this to your file (beware of false line breaks in email)

\unprotect

\def\dostartmathmatrix[#1][#2]%
  {\begingroup
   \edef\currentmathmatrix{#1}%
   \doifassignmentelse{#2}{\setupmathmatrix[#1][#2]}\donothing
   \null
   
\executeifdefined{\??mx:\mathmatrixparameter\c!location}{\getvalue{\??mx:\v!lohi}}%
   \mathmatrixleft
   \mathmatrixbox\bgroup
   \pushmacro\domatrixNC
   \let\endmath\relax
   \def\NC{\domatrixNC}%
   \def\MC{\domatrixNC\ifmmode\else$\def\endmath{$}\fi}%
   \global\let\domatrixNC\dodomatrixNC
   \def\NR{\endmath\global\let\domatrixNC\dodomatrixNC\crcr}%
   \normalbaselines
   \mathsurround\zeropoint
   \everycr\emptytoks
   \tabskip\zeropoint
   \eqaligncolumn\zerocount % could be \!!counta
   
\processcommacommand[\mathmatrixparameter\c!align]{\advance\eqaligncolumn\plusone\dosetmatrixcolumn}%
   \!!counta=\ifnum\eqaligncolumn\!!counta \eqaligncolumn \else \plusone \fi
   \global\eqaligncolumn\plusone
   \preparemathmatrix } % uses !!counta

\def\buildmathmatrix % beware: etex only
  {\scratchtoks\emptytoks
   \expanded{\scratchtoks{\the\scratchtoks\the\!!toksa}}%
   \dorecurse{\numexpr\!!counta-\plusone\relax}
 {\expanded{\scratchtoks{\the\scratchtoks\the\!!toksb}}}%
   \expanded{\scratchtoks{\the\scratchtoks\the\!!toksc }}}

\protect

Hans, this needs to be changed in core-mat.tex. I do not know if 
something can be done to avoid such errors in future.


Wim, I am attaching a modified version of your file which gives the 
correct output. (I needed to make some changes since I did not have 
your map file for rsfs). You loose some symbols from the math 
collection. I do not know how to add extra math symbol sets without 
loosing these characters. Look at math-tim.tex to see how more 
families can be supported. But I would suggest waiting for mkiv, where 
the limit on font families will be removed and some of this font mess 
would be cleaner.


Aditya


\tracetypescriptstrue

\unprotect
\def\dostartmathmatrix[#1][#2]%
  {\begingroup
   \edef\currentmathmatrix{#1}%
   \doifassignmentelse{#2}{\setupmathmatrix[#1][#2]}\donothing
   \null
   \executeifdefined{\??mx:\mathmatrixparameter\c!location}{\getvalue{\??mx:\v!lohi}}%
   \mathmatrixleft
   \mathmatrixbox\bgroup
   \pushmacro\domatrixNC
   \let\endmath\relax
   \def\NC{\domatrixNC}%
   \def\MC{\domatrixNC\ifmmode\else$\def\endmath{$}\fi}%
   \global\let\domatrixNC\dodomatrixNC
   \def\NR{\endmath\global\let\domatrixNC\dodomatrixNC\crcr}%
   \normalbaselines
   \mathsurround\zeropoint
   \everycr\emptytoks
   \tabskip\zeropoint
   \eqaligncolumn\zerocount % could be \!!counta
   \processcommacommand[\mathmatrixparameter\c!align]{\advance\eqaligncolumn\plusone\dosetmatrixcolumn}%
   \!!counta=\ifnum\eqaligncolumn\!!counta \eqaligncolumn \else \plusone \fi
   \global\eqaligncolumn\plusone
   \preparemathmatrix } % uses !!counta

\def\buildmathmatrix % beware: etex only
  {\scratchtoks\emptytoks
   \expanded{\scratchtoks{\the\scratchtoks\the\!!toksa}}%
   \dorecurse{\numexpr\!!counta-\plusone\relax}
 {\expanded{\scratchtoks{\the\scratchtoks\the\!!toksb}}}%
   \expanded{\scratchtoks{\the\scratchtoks\the\!!toksc }}}
\protect

\startmathcollection [extra]
\definemathsymbol [oiint]   [op] [mc] [08] [mc] [09]
\definemathsymbol [oiiint]  [op] [mc] [29] [mc] [2a]
\definemathsymbol [ointctrclockwise][op] [mc] [0A] [mc] [0B]
\definemathsymbol 

Re: [NTG-context] Boxed items don't like sidefloats

2007-08-01 Thread Hans Hagen
Giuseppe Bilotta wrote:
 Tuesday, July 31, 2007 Hans Hagen wrote:
 
 Giuseppe Bilotta wrote:
 Ah, excellent, it works perfectly, thanks a lot! Of course,
 I'm still curious about the reason why a standard vbox
 wouldn't do it ...
 
 sidefloats hook into the output routine and that does ot work in a box;
 
 Makes sense.
 
 streams intercept the page stream (nasty but neat); expect more of that
 kind of stuff
 
 You know, seeing how streams work made me think about an
 extension I was considering for Alpeh: \pageboxnumber, being
 255 by default but which could be changed at runtime,
 choosing which box was used to build the MVL. I originally
 thought about it because my mathematically aesthetical sense
 complained that box 255 had to be used in e-TeX and
 Omega/Aleph as well (the last box number in each system made
 more sense), but now that I see your streams idea I think it
 would have been a useful addition.

this will become configurable in luatex

 (Oh yes, I should really get back to Aleph. I see that
 luatex builds on that too. I must say that I'm glad to see
 that the project has been taken over when I disappeared
 without a trace :P)

well, luatex renders aleph kind of obsolete -)

also, luatex has pdf output (also for aleph stuff)


-
   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
-
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Fixing/Updating ConTeXt

2007-08-01 Thread Alex K
Thomas,

Better yet that it's only one step! Many thanks.

ConTeXt appears to be functioning normally again, but now my only problem is 
with XeTeX... for some reason when I try to typeset files using it I get:

FatalError: Your format does not match the base files!

What went wrong here? Or should I ask this elsewhere?

Thanks again,

Alex

- Original Message 
From: Thomas A. Schmitz [EMAIL PROTECTED]
To: mailing list for ConTeXt users ntg-context@ntg.nl
Sent: Wednesday, August 1, 2007 1:43:15 AM
Subject: Re: [NTG-context] Fixing/Updating ConTeXt


On Jul 31, 2007, at 10:02 PM, Alex K wrote:

 This must sound stupid, but how do you update ConTeXt via the  
 command line on Mac OSX? I'm using the MacTeX distribution and Mac  
 OS 10.4.10. I tried (foolishly) to install the newest version of  
 ConTeXt using i-installer, but that screwed up my current  
 installation, so I was wondering if I could overwrite it with a new  
 version. Step-by-step instructions would be very much appreciated!  
 Thanks in advance for your patience and help!

 -Alex


On the command-line:

sudo ctxtools --updatecontext

Is that steo-by-step enough?

Thomas
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___







   

Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, 
photos  more. 
http://mobile.yahoo.com/go?refer=1GNXIC___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Fixing/Updating ConTeXt

2007-08-01 Thread Hans Hagen
Alex K wrote:
 Thomas,
 
 Better yet that it's only one step! Many thanks.
 
 ConTeXt appears to be functioning normally again, but now my only 
 problem is with XeTeX... for some reason when I try to typeset files 
 using it I get:
 
 FatalError: Your format does not match the base files!
 
 What went wrong here? Or should I ask this elsewhere?

texexec --make --all --xetex

-
   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
-
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] extra math symbols and alignment

2007-08-01 Thread Aditya Mahajan
Quoting WN [EMAIL PROTECTED]:

 Hi Aditya

 I tried your code and performed more tests. My first tests show your fix
 works. But than I added a \section{} in my test code and I am sorry 
 to say that
 the math matrix alignment does not work at that point.
 However the extra math fonts I defined still do work.

Ok. I will test this to see what is happening. (I do not have an 
uptodate context on this machine).

 General observation
 I thought from the examples like using the RSFS font on the wiki page
 http://wiki.contextgarden.net/rsfs that using other fonts for math 
 should be easy.
 Thinking about this specific example I now understand that this 
 example is flawed
 as some default math characters are also overwritten.

I am out of depths here. I do not really understand how math fonts are 
handled. The wiki example was modified from a suggestion from Taco. For 
rsfs, you can go to the plain tex way of doing things also.

Aditya

 PS
 Attached my modified test code along with the map file for the RSFS fonts.
 For the RSFS fonts I am using \definedfont and not using the definebodyfont.

 Hi Wim,

 On Tue, 31 Jul 2007, WN wrote:

 see previous email

 Phew! This was a hard to find bug. First, to illustrate the bug:
 \definetypeface[mainface] [rm] [serif] [modern] [default] [encoding=texansi]
 \definetypeface[mainface] [mm] [math]  [modern] [modern]  [encoding=texansi]

 \setupbodyfont[mainface,11pt]

 \loggingall

 \starttext
 \startformula
 A = \startmatrix[align={left,right}]
   \NC 11 \NC 2  \NR
   \NC 2  \NC -5 \NR
 \stopmatrix
 \stopformula

 \stoptext

 Try with and without the font declarations. With the font 
 declarations, you lost matrix alignment. The reason is that 
 \startmatrix uses \scratchcounter, which gets rewritten when using a 
 font collection other than default. One fix it to replace 
 \scractcounter in matrix constructions by some other counter, for 
 example \!!counta.

 So, add this to your file (beware of false line breaks in email)

 \unprotect

 \def\dostartmathmatrix[#1][#2]%
   {\begingroup
\edef\currentmathmatrix{#1}%
\doifassignmentelse{#2}{\setupmathmatrix[#1][#2]}\donothing
\null

 \executeifdefined{\??mx:\mathmatrixparameter\c!location}{\getvalue{\??mx:\v!lohi}}%
\mathmatrixleft
\mathmatrixbox\bgroup
\pushmacro\domatrixNC
\let\endmath\relax
\def\NC{\domatrixNC}%
\def\MC{\domatrixNC\ifmmode\else$\def\endmath{$}\fi}%
\global\let\domatrixNC\dodomatrixNC
\def\NR{\endmath\global\let\domatrixNC\dodomatrixNC\crcr}%
\normalbaselines
\mathsurround\zeropoint
\everycr\emptytoks
\tabskip\zeropoint
\eqaligncolumn\zerocount % could be \!!counta

 \processcommacommand[\mathmatrixparameter\c!align]{\advance\eqaligncolumn\plusone\dosetmatrixcolumn}%
\!!counta=\ifnum\eqaligncolumn\!!counta \eqaligncolumn \else 
 \plusone \fi
\global\eqaligncolumn\plusone
\preparemathmatrix } % uses !!counta

 \def\buildmathmatrix % beware: etex only
   {\scratchtoks\emptytoks
\expanded{\scratchtoks{\the\scratchtoks\the\!!toksa}}%
\dorecurse{\numexpr\!!counta-\plusone\relax}
  {\expanded{\scratchtoks{\the\scratchtoks\the\!!toksb}}}%
\expanded{\scratchtoks{\the\scratchtoks\the\!!toksc }}}

 \protect

 Hans, this needs to be changed in core-mat.tex. I do not know if 
 something can be done to avoid such errors in future.

 Wim, I am attaching a modified version of your file which gives the 
 correct output. (I needed to make some changes since I did not have 
 your map file for rsfs). You loose some symbols from the math 
 collection. I do not know how to add extra math symbol sets without 
 loosing these characters. Look at math-tim.tex to see how more 
 families can be supported. But I would suggest waiting for mkiv, 
 where the limit on font families will be removed and some of this 
 font mess would be cleaner.

 Aditya




___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Boxed items don't like sidefloats

2007-08-01 Thread Giuseppe Bilotta
Wednesday, August 1, 2007 Hans Hagen wrote:

 Giuseppe Bilotta wrote:

 You know, seeing how streams work made me think about an
 extension I was considering for Alpeh: \pageboxnumber, being
 255 by default but which could be changed at runtime,
 choosing which box was used to build the MVL. I originally
 thought about it because my mathematically aesthetical sense
 complained that box 255 had to be used in e-TeX and
 Omega/Aleph as well (the last box number in each system made
 more sense), but now that I see your streams idea I think it
 would have been a useful addition.

 this will become configurable in luatex

Ah, good to know.

 (Oh yes, I should really get back to Aleph. I see that
 luatex builds on that too. I must say that I'm glad to see
 that the project has been taken over when I disappeared
 without a trace :P)

 well, luatex renders aleph kind of obsolete -)

Yeah, I got that impression :)

 also, luatex has pdf output (also for aleph stuff)

This is a very good thing. I have big hopes up for it. Also,
as part of my “getting back into the loop”, do you think
there's some where/some how I can give a hand?

-- 
Giuseppe Oblomov Bilotta

___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Fixing/Updating ConTeXt

2007-08-01 Thread Alex K
Hans,

Thanks for the suggestion. I tried that and then tested:
 
texexec --xtx sample_file

but I still got the error. Is there a way to overwrite/update the installation 
as I did with ConTeXt? If worse comes to worst, I'll look into reinstalling 
XeTeX...

Thanks again for the help!

Alex

- Original Message 
From: Hans Hagen [EMAIL PROTECTED]
To: mailing list for ConTeXt users ntg-context@ntg.nl
Sent: Wednesday, August 1, 2007 11:28:17 AM
Subject: Re: [NTG-context] Fixing/Updating ConTeXt

Alex K wrote:
 Thomas,
 
 Better yet that it's only one step! Many thanks.
 
 ConTeXt appears to be functioning normally again, but now my only 
 problem is with XeTeX... for some reason when I try to typeset files 
 using it I get:
 
 FatalError: Your format does not match the base files!
 
 What went wrong here? Or should I ask this elsewhere?

texexec --make --all --xetex

-
   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
-
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___







   

Pinpoint customers who are looking for what you sell. 
http://searchmarketing.yahoo.com/___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Fixing/Updating ConTeXt

2007-08-01 Thread Hans Hagen
Alex K wrote:
 Hans,
 
 Thanks for the suggestion. I tried that and then tested:
  
 texexec --xtx sample_file

texexec --xetex sample_file
-
   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
-
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Boxed items don't like sidefloats

2007-08-01 Thread Hans Hagen
Giuseppe Bilotta wrote:

 This is a very good thing. I have big hopes up for it. Also,
 as part of my �getting back into the loop�, do you think
 there's some where/some how I can give a hand?

well, mplib ... apart from going megapost (your speciality) 3d will be 
added and since you're the mathemagician who can think in 6 dimensions ...

mplib will be linked into luatex

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
-
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] itemize with zero start

2007-08-01 Thread Wolfgang Werners-Lucchini
 Wolfgang Werners-Lucchini wrote:
  Hallo,
  
  has nobody tested this with 
 
 did you update?

No, I have not updated yet!

I would like to understand this error first.

Can you please explain, why a comment can toggle an error?
Filtering comments should be very low level (plain TeX or ConTeXt 
Core, after some catcode redef???).

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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] XeTeX typescripts in ver: 2007.07.24

2007-08-01 Thread Michael Green
In ver: 2007.01.12, a typescript like this works fine:

\starttypescript[serif][minion][uc]
\definefontsynonym  [MinionRegular] ['Minion Pro:mapping=tex-text; 
+onum;'][encoding=uc]
\stoptypescript

We get Minion Pro, mapping TeX markup to unicode characters and old- 
style numbers.

This seems not to work in ver: 2007.07.24: the font can't be found  
(I'll put a bit of the log file at the end). However, everything is  
fine when the typescript is changed to read like this.

\starttypescript[serif][minion][uc]
\definefontsynonym  [MinionRegular] ['Minion Pro']  [encoding=uc]
\stoptypescript

Here's what looks to me to be the relevant part of the log.

systems : begin file article at line 1
(/Users/michaelgreen/Library/texmf/tex/context/article.tex
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-exa.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-syn.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-enc.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-siz.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-map.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-spe.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-akb.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-xtx.tex)
(/Users/michaelgreen/Library/texmf/tex/context/myfonts.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-exa.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-syn.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-enc.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-siz.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-map.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-spe.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-akb.tex)
(/usr/local/gwTeX/texmf.pkgs/tex/context/base/type-xtx.tex)
(/Users/michaelgreen/Library/texmf/tex/context/myfonts.tex)
! Font \*minion12ptrmtfrm*:='mapping=tex-text;+onum; at 12.0pt' not  
loadable:
installed font not found.

  (myfonts.tex is a file of typescripts for system fonts, made to  
match the those in the creating your own typescripts section of the  
wiki page: http://wiki.contextgarden.net/Fonts_in_XeTeX).

Perhaps the old functionality being replaced with something different.

Thanks.

Michael Green
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___