Re: [NTG-context] Math drawings for dummies

2008-10-09 Thread luigi scarso
On Wed, Oct 8, 2008 at 7:34 PM, Mojca Miklavec 
[EMAIL PROTECTED] wrote:

 Hello,

 for those who are afraid of Metapost (or simply think that it takes
 too much time to program a simple figure with not too fancy features),
 there's a magnificent point-and-click tool for creating mathematical
 drawings with perfect precision and TeX labels matching the style of
 your document.
 (If you want to find itersection of curves, or curves going through
 several points, you don't need to pretend that you have hit the
 intersection as you would do in Corel Draw.)

 The prerelease version has TikZ export (with plain/LaTeX/ConTeXt
 support included).
http://www.geogebra.org - future


a bit off topic:
geogebra is included in a live dvd , see
http://www.knoppix-math.org/


-- 
luigi
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] XML

2008-10-09 Thread Wolfgang Schuster
On Wed, Oct 8, 2008 at 12:14 AM,  [EMAIL PROTECTED] wrote:
 Hello,

 The family is gone for the week, so I have time to play ...

 What I'm doing is the following(using the attached files):
context --ctx=t-openoffice BoldOnlyContent.xml
 Which works nicely.

 I'd like to make this work like so:
context --ctx=t-openoffice VersuchBoldOnly.odt
 but whether I change the respective line in t-openoffice.tex to
\xmlprocess{main}{zip://*/content.xml}{}
 or
\xmlprocess{main}{*/content.xml}{}
 - no luck ... how to do this?

\xmlprocess{main}{zip:///\inputfilename.odt?name=content.xml}{}

or

\usezipfile[\inputfilename.odt]
\xmlprocess{main}{*/content.xml}{}

 Hans let me know how to parse xml styles on the fly, but I fail to generalize
 this further. When uncommenting the line
\xmlval{fo:font-style}{\xmlatt{#1}{font-style}}{}
 in t-openoffice.tex this doesn't work as expected:
context --ctx=t-openoffice BoldAndItalicContent.xml
 Any hints on how to fix this?

You could use this for the start but it behavious a little bit weird.

  \unprotect

  \def\switchfontstyle
{\ifx\fontalternative\c!tf \it \else
 \ifx\fontalternative\c!bf \bi \else
   \it \fi\fi}

  \protect

  \xmlmapvalue {fo:font-style}  {italic} {\switchfontstyle}

 I have asked related questions in the past, but have now a bit of time to
 investigate further ...

Regards,
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
___


Re: [NTG-context] latest beta (again)

2008-10-09 Thread Hans Hagen
Thomas A. Schmitz wrote:
 Hans,
 
 I still have some problems with my fonts in the latest beta. Maybe it  
 has to do with the latest optimizations. I'm just wondering: in my  
 Greek typescripts, I define several fontfeatures and connect them with  
 featurefiles, like so (just an example, the list is longer):

hard to test without test files and fonts -)

you can try

\ctxlua{fonts.trace=true}

and see what is handled


% test file
%
% \starttypescript[serif][mine-1]
% \definefontsynonym[Serif] [TeXGyrePagella-Regular]
% 
\definefontsynonym[TeXGyrePagella-Regular][file:texgyrepagella-regular]
% \stoptypescript
%
% \starttypescript[serif][mine-2]
% \definefontsynonym[Serif] [TeXGyrePagella-Regular] 
  [features=default]
% 
\definefontsynonym[TeXGyrePagella-Regular][file:texgyrepagella-regular] 
[features=oldstyle]
% \stoptypescript
%
% \starttypescript[serif][mine-3]
% \definefontsynonym[Serif] [TeXGyrePagella-Regular] 
  [features=oldstyle]
% 
\definefontsynonym[TeXGyrePagella-Regular][file:texgyrepagella-regular] 
[features=default]
% \stoptypescript
%
% \starttypescript[serif][mine-4]
% \definefontsynonym[Serif] [TeXGyrePagella-Regular] 
  [features=default]
% 
\definefontsynonym[TeXGyrePagella-Regular][file:texgyrepagella-regular] 
[features=default]
% \stoptypescript
%
% \starttypescript[serif][mine-5]
% \definefontsynonym[Serif] [TeXGyrePagella-Regular] 
  [features=oldstyle]
% 
\definefontsynonym[TeXGyrePagella-Regular][file:texgyrepagella-regular] 
[features=oldstyle]
% \stoptypescript
%
% \starttext
% \dorecurse {5} {
% 
\expanded{\definetypeface[mine-\recurselevel][rm][serif][mine-\recurselevel][default]}
% \expanded{\setupbodyfont [mine-\recurselevel] 
mine-\recurselevel: text 1234567890 done}
% \par
% }
% \blank
% \dorecurse {5} {
% 
\expanded{\definetypeface[more-\recurselevel][rm][serif][mine-\recurselevel][default][features=oldstyle]}
% \expanded{\setupbodyfont [more-\recurselevel] 
mine-\recurselevel: text 1234567890 done}
% \par
% }
% \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
-
___
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] latest beta (again)

2008-10-09 Thread Thomas A. Schmitz

On Oct 9, 2008, at 11:22 AM, Hans Hagen wrote:

 hard to test without test files and fonts -)


Yes, I can see that :-) Your crystal ball is broken, then?

 you can try

 \ctxlua{fonts.trace=true}

 and see what is handled

Well, that kind of confirms my suspicion. I attach the relevant stuff  
from the log file. Basically, ConTeXT registers Korinthia with the  
feature gentiumgreek (instead of feature korinthia). I'll see if I can  
narrow it down to a more manageable test file and send it to you.

Thanks

Thomas

define font | registering Korinthia as otf
define font | using real font with id ?, n:/Users/tas/texmf/fonts/ 
opentype/greek/korinthia/Korinthia.otf s:865080 b:2 e:unicode  
p:Korinthia f:Korinthia.otf
define font | loading at 2 id 38, hash: Korinthia @ analyze=true 
+featurefile=gentium.fea+gent=true+kern=true+language=dflt+mode=node 
+script=latn @ 865080
define font | defining Korinthia with id 38 as \*greek12ptrmtfrm*  
(,gentiumgreek,)
define font | memory usage after: 51 MB (ctx: 52 MB)
define font | Serif sa 1 - lookup: [file], name: Serif, sub: -,  
method: -, detail: -
define font | memory usage before: 51 MB (ctx: 52 MB)
define font | registering Korinthia as otf
define font | using real font with id ?, n:/Users/tas/texmf/fonts/ 
opentype/greek/korinthia/Korinthia.otf s:504630 b:2 e:unicode  
p:Korinthia f:Korinthia.otf
define font | loading at 2 id 39, hash: Korinthia @ analyze=true 
+featurefile=gentium.fea+gent=true+kern=true+language=dflt+mode=node 
+script=latn @ 504630
define font | defining Korinthia with id 39 as \*greek7ptrmtfrm*  
(,gentiumgreek,)
define font | memory usage after: 51 MB (ctx: 52 MB)
define font | Serif sa 1 - lookup: [file], name: Serif, sub: -,  
method: -, detail: -
define font | memory usage before: 51 MB (ctx: 52 MB)
define font | registering Korinthia as otf
define font | using real font with id ?, n:/Users/tas/texmf/fonts/ 
opentype/greek/korinthia/Korinthia.otf s:648810 b:2 e:unicode  
p:Korinthia f:Korinthia.otf
define font | loading at 2 id 40, hash: Korinthia @ analyze=true 
+featurefile=gentium.fea+gent=true+kern=true+language=dflt+mode=node 
+script=latn @ 648810
define font | defining Korinthia with id 40 as \*greek9ptrmtfrm*  
(,gentiumgreek,)

and then later

define font | loading at 2 id 45, hash: lmsy9 @ unknown @ 589824
define font | defining lmsy9 with id 45 as \*greek9ptmmsyrm* (,,)
define font | memory usage after: 52 MB (ctx: 53 MB)
define font | cmsy10 at 12pt - lookup: [file], name: cmsy10, sub: -,  
method: -, detail: -
define font | memory usage before: 52 MB (ctx: 53 MB)
define font | reusing lmsy10 with id 10 as \*greek12ptmmsyrm* (,,)
define font | memory usage after: 52 MB (ctx: 53 MB)
define font | cmex10 at 12pt - lookup: [file], name: cmex10, sub: -,  
method: -, detail: -
define font | memory usage before: 52 MB (ctx: 53 MB)
define font | reusing lmex10 with id 11 as \*greek12ptmmexrm* (,,)
define font | memory usage after: 52 MB (ctx: 53 MB)
define font | msam7 sa 1 - lookup: [file], name: msam7, sub: -,  
method: -, detail: -
define font | memory usage before: 52 MB (ctx: 53 MB)
define font | reusing msam7 with id 12 as \*greek7ptmmmarm* (,,)
define font | memory usage after: 52 MB (ctx: 53 MB)
define font | msam10 sa 1 - lookup: [file], name: msam10, sub: -,  
method: -, detail: -
define font | memory usage before: 52 MB (ctx: 53 MB)
define font | reusing msam10 with id 13 as \*greek9ptmmmarm* (,,)
define font | memory usage after: 52 MB (ctx: 53 MB)
define font | msam10 sa 1 - lookup: [file], name: msam10, sub: -,  
method: -, detail: -
define font | memory usage before: 52 MB (ctx: 53 MB)
define font | reusing msam10 with id 14 as \*greek12ptmmmarm* (,,)
define font | memory usage after: 52 MB (ctx: 53 MB)
define font | msbm7 sa 1 - lookup: [file], name: msbm7, sub: -,  
method: -, detail: -
define font | memory usage before: 52 MB (ctx: 53 MB)
define font | reusing msbm7 with id 15 as \*greek7ptmmmbrm* (,,)
define font | memory usage after: 52 MB (ctx: 53 MB)
define font | msbm10 sa 1 - lookup: [file], name: msbm10, sub: -,  
method: -, detail: -
define font | memory usage before: 52 MB (ctx: 53 MB)
define font | reusing msbm10 with id 16 as \*greek9ptmmmbrm* (,,)
define font | memory usage after: 52 MB (ctx: 53 MB)
define font | msbm10 sa 1 - lookup: [file], name: msbm10, sub: -,  
method: -, detail: -
define font | memory usage before: 52 MB (ctx: 53 MB)
define font | reusing msbm10 with id 17 as \*greek12ptmmmbrm* (,,)
define font | memory usage after: 52 MB (ctx: 53 MB)
define font | SerifBold sa 1 - lookup: [file], name: SerifBold, sub:  
-, method: -, detail: -
define font | memory usage before: 52 MB (ctx: 53 MB)
define font | reusing Korinthia with id 39 as \*greek7ptrmbfrm*  
(,gentiumgreek,)
define font | memory usage after: 52 MB (ctx: 53 MB)
define font | SerifBold sa 1 - lookup: [file], name: SerifBold, sub:  
-, method: -, detail: -
define font | memory usage before: 52 MB (ctx: 53 MB)
define font | 

[NTG-context] latest beta (again)

2008-10-09 Thread Thomas A. Schmitz
Hans,

I still have some problems with my fonts in the latest beta. Maybe it  
has to do with the latest optimizations. I'm just wondering: in my  
Greek typescripts, I define several fontfeatures and connect them with  
featurefiles, like so (just an example, the list is longer):

\installfontfeature[otf][gent]
\installfontfeature[otf][kori]

\definefontfeature
   [korinthia]

[mode 
= 
node 
,language 
= 
dflt 
,script 
=latn,kern=yes,tlig=no,trep=no,kori=yes,featurefile=korinthia.fea]

\definefontfeature
   [gentiumgreek]
[mode=node,language=dflt,script=latn,kern=yes,tlig=no,trep=no,
 gent=yes,featurefile=gentium.fea]

\starttypescript [serif] [GreekGentiumAlt] [name]
   \definefontsynonym [Serif]   [name:GenAR102]  
[features=gentiumgreek]
   \definefontsynonym [SerifItalic] [name:GenAI102]  
[features=gentiumgreek]
   \definefontsynonym [SerifBold]   [Serif]
   \definefontsynonym [SerifBoldItalic] [SerifItalic]
\stoptypescript

\starttypescript [serif] [GreekKorinthia] [name]
   \definefontsynonym [Serif]   [name:Korinthia]   
[features=korinthia]
   \definefontsynonym [SerifItalic] [Serif]
   \definefontsynonym [SerifBold]   [Serif]
   \definefontsynonym [SerifBoldItalic] [Serif]
\stoptypescript

The main font definition is of this form:

\starttypescript[greek]
\definetypeface[greek][rm][serif][\currentmoduleparameter{font}] 
[default][rscale=\currentmoduleparameter{scale}]
\stoptypescript
\usetypescript[greek]

So I'm just wondering: must the features= be included into the  
\definetypeface as well? I have the impression that the different  
features I define are not used at all...

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
___


[NTG-context] Max runs

2008-10-09 Thread luigi scarso
Hi
sorry for the noise
but with last luatex I have 8 runs now for my catalog.
Almost for sure a bug of mine,
but how can I limit the numbers of runs ?
I know only
context --once

-- 
luigi
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] \version and \adaptlayout

2008-10-09 Thread Wolfgang Schuster
Hi,

the following example creates a error message.

\version[temporary]

\showframe

\starttext

\adaptlayout[lines=1]

\input knuth

\stoptext

Wolfgang
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Max runs

2008-10-09 Thread Aditya Mahajan
On Thu, 9 Oct 2008, luigi scarso wrote:

 Hi
 sorry for the noise
 but with last luatex I have 8 runs now for my catalog.
 Almost for sure a bug of mine,
 but how can I limit the numbers of runs ?
 I know only
 context --once

texexec --runs=3

I do not know if context script accepts --runs, but you can always use 
texexec --lua.

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] latest beta (again)

2008-10-09 Thread Hans Hagen
Thomas A. Schmitz wrote:
 Hans,
 
 I still have some problems with my fonts in the latest beta. Maybe it  
 has to do with the latest optimizations. I'm just wondering: in my  
 Greek typescripts, I define several fontfeatures and connect them with  
 featurefiles, like so (just an example, the list is longer):
 
 \installfontfeature[otf][gent]
 \installfontfeature[otf][kori]
 
 \definefontfeature
[korinthia]
 
 [mode 
 = 
 node 
 ,language 
 = 
 dflt 
 ,script 
 =latn,kern=yes,tlig=no,trep=no,kori=yes,featurefile=korinthia.fea]
 
 \definefontfeature
[gentiumgreek]
 [mode=node,language=dflt,script=latn,kern=yes,tlig=no,trep=no,
  gent=yes,featurefile=gentium.fea]
 
 \starttypescript [serif] [GreekGentiumAlt] [name]
\definefontsynonym [Serif]   [name:GenAR102]  
 [features=gentiumgreek]
\definefontsynonym [SerifItalic] [name:GenAI102]  
 [features=gentiumgreek]
\definefontsynonym [SerifBold]   [Serif]
\definefontsynonym [SerifBoldItalic] [SerifItalic]
 \stoptypescript
 
 \starttypescript [serif] [GreekKorinthia] [name]
\definefontsynonym [Serif]   [name:Korinthia]   
 [features=korinthia]
\definefontsynonym [SerifItalic] [Serif]
\definefontsynonym [SerifBold]   [Serif]
\definefontsynonym [SerifBoldItalic] [Serif]
 \stoptypescript
 
 The main font definition is of this form:
 
 \starttypescript[greek]
 \definetypeface[greek][rm][serif][\currentmoduleparameter{font}] 
 [default][rscale=\currentmoduleparameter{scale}]
 \stoptypescript
 \usetypescript[greek]
 
 So I'm just wondering: must the features= be included into the  
 \definetypeface as well? I have the impression that the different  
 features I define are not used at all...

it binds to Serif i.e. the left part of the definefontsynonym (used to 
be a complex sometimes left/right thing)

but it should work out well because eventually it's bound to greekSerif

an option indeed it to delay it and assign it in the \definetypeface

(or use [name:GenAR102*gentiumgreek])

i'm still not sure what is the best way to implement this abstraction

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] \version and \adaptlayout

2008-10-09 Thread Hans Hagen
Wolfgang Schuster wrote:
 Hi,
 
 the following example creates a error message.
 
 \version[temporary]
 
 \showframe
 
 \starttext
 
 \adaptlayout[lines=1]
 
 \input knuth
 
 \stoptext

\def\reportpagedimensions
   {\ifx\poppagedimensions\relax \else
  \space\the\dimexpr\@@zaheight\relax\space-\space
\fi
\realfolio}



-
   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] XML

2008-10-09 Thread Johannes Graumann
Wolfgang Schuster schuster.wolfgang at googlemail.com writes:

 \xmlprocess{main}{zip:///\inputfilename.odt?name=content.xml}{}
 
 or
 
 \usezipfile[\inputfilename.odt]
 \xmlprocess{main}{*/content.xml}{}

Thank you very much - very nice!

 You could use this for the start but it behavious a little bit weird.
 
   \unprotect
 
   \def\switchfontstyle
 {\ifx\fontalternative\c!tf \it \else
  \ifx\fontalternative\c!bf \bi \else
\it \fi\fi}
 
   \protect
 
   \xmlmapvalue {fo:font-style}  {italic} {\switchfontstyle}

Hmm ... if I understand this correctly this is aimed at dealing with nested
bold/italic attributes? 
While I'm certainly going to fall over this rather soon, I think the issue here
is that the following excerpt, where T1 and T2 correspond to bold and italic
definitions further up, is misinterpreted such that the opening text:span of
the T1 section is taken for the beginning of the T2 section instead and T2
is accordingly applied to the whole construct ...

text:p text:style-name=Standard
   Versuch 
   text:span text:style-name=T1
  Bold Versuch 
   /text:span
   text:span text:style-name=T2
  Italic Versuch
   /text:span
/text:p

Where in Hans' snippet below might that be fixable?

\startxmlsetups office
   \xmlsetsetup{main}{text:p|text:span}{*}
\stopxmlsetups
xmlregistersetup{office}

\startxmlsetups text:p
   \xmlflush{#1}\par
\stopxmlsetups

\startxmlsetups text:span
   \bgroup
 
\xmlfilter{main}{office:automatic-styles/style:style/style:text-properties
/command(do:style:text-properties)}
  \xmlflush{#1}
   \egroup
\stopxmlsetups

Thanks for any further hints,

Joh

___
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] using different font faces and sizes in same document

2008-10-09 Thread Mohamed Bana
hi guys,

\definetypeface[adobe][rm][serif][minionpro][default]
%\definetypeface[adobe][rm][serif][agaramondpro][default]
\definetypeface[adobe][ss][sans][myriadpro][default]
%\definetypeface[adobe][ss][sans][cronospro][default]
\setupbodyfont[adobe,11pt]

Given the above, the document will be typeset only in minion pro, I'd 
like to know how to typeset parts of the document in different faces and 
sizes.  For instance, I'd like the first section in minionpro 11pt, then 
say, any other arbitrary section (I choose manually), to be typeset in 
minionpro 12pt.

So;

section1; minionpro 11pt as serif, minionpro as sans
section2; minionpro 12pt as serif, minionpro as sans
section3; garamondpro 11pt as serif, cronospro as sans
section4; garamondpro 12pt as serif, cronospro as sans

etc.

I hope that was clear, the typescripts are defined as;

% SANS

\starttypescript [sans] [cronospro]
   \definefontsynonym [CronosPro-Regular][name:cronosproregular]
   \definefontsynonym [CronosPro-Bold]   [name:cronosprobold]
   \definefontsynonym [CronosPro-Italic] [name:cronosproitalic]
   \definefontsynonym [CronosPro-BoldItalic] [name:cronosproboldit]
\stoptypescript

\starttypescript [sans] [cronospro]
   \definefontsynonym [Sans] [CronosPro-Regular] 
[features=historic]
   \definefontsynonym [SansBold] [CronosPro-Bold] 
[features=historic]
   \definefontsynonym [SansItalic]   [CronosPro-Italic] 
[features=historic]
   \definefontsynonym [SansBoldItalic]   [CronosPro-BoldItalic] 
[features=historic]
   \definefontsynonym [SansCaps][Sans]  
[features=smallcaps]
\stoptypescript

\starttypescript [sans] [myriadpro]
   \setups[font:fallback:sans]
   % \definefontsynonym [MyriadPro-Regular][name:MyriadPro-Regular] 
[features=default]
   % \definefontsynonym [MyriadPro-Bold]   [name:MyriadPro-Bold] 
[features=default]
   % \definefontsynonym [MyriadPro-Italic] [name:MyriadPro-It] 
[features=default]
   % \definefontsynonym [MyriadPro-BoldItalic] [name:MyriadPro-BoldIt] 
[features=default]
   \definefontsynonym [MyriadPro-Regular][name:myriadproregular]
   \definefontsynonym [MyriadPro-Bold]   [name:myriadprobold]
   \definefontsynonym [MyriadPro-Italic] [name:myriadproit]
   \definefontsynonym [MyriadPro-BoldItalic] [name:myriadproboldit]
\stoptypescript

\starttypescript [sans] [myriadpro]
   \definefontsynonym [Sans] [MyriadPro-Regular] 
[features=historic]
   \definefontsynonym [SansBold] [MyriadPro-Bold] 
[features=historic]
   \definefontsynonym [SansItalic]   [MyriadPro-Italic] 
[features=historic]
   \definefontsynonym [SansBoldItalic]   [MyriadPro-BoldItalic] 
[features=historic]
   \definefontsynonym [SansCaps] [Sans] 
[features=latin-smallcaps]
\stoptypescript


% SERIFS

\starttypescript [serif] [agaramondpro]
   % \definefontsynonym [AGaramondPro-Regular] 
[name:acaslonproregular] [features=default]
   % \definefontsynonym [AGaramondPro-Bold]   [name:acaslonprobold] 
[features=default]
   % \definefontsynonym [AGaramondPro-Italic] 
[name:acaslonproitalic]  [features=default]
   % \definefontsynonym [AGaramondPro-BoldItalic] 
[name:acaslonprobolditalic]  [features=default]
   \definefontsynonym [AGaramondPro-Regular] 
[name:agaramondproregular]
   \definefontsynonym [AGaramondPro-Bold] 
[name:adobegaramondproboldbold]
   \definefontsynonym [AGaramondPro-Italic] 
[name:agaramondproitalic]
   \definefontsynonym [AGaramondPro-BoldItalic] 
[name:agaramondprobolditalic]
\stoptypescript

\starttypescript [serif] [agaramondpro]
   \definefontsynonym [Serif]   [AGaramondPro-Regular] 
[features=historic]
   \definefontsynonym [SerifBold]   [AGaramondPro-Bold] 
[features=historic]
   \definefontsynonym [SerifItalic] [AGaramondPro-Italic] 
[features=historic]
   \definefontsynonym [SerifBoldItalic] [AGaramondPro-BoldItalic] 
[features=historic]
   \definefontsynonym [SerifCaps]   [Serif] 
[features=latin-smallcaps]
\stoptypescript


\starttypescript [serif] [minionpro]
   \definefontsynonym [MinionPro-Regular][name:minionproregular]
   \definefontsynonym [MinionPro-Bold]   [name:minionprobold]
   \definefontsynonym [MinionPro-Italic] [name:minionproit]
   \definefontsynonym [MinionPro-BoldItalic] [name:minionproboldit]
\stoptypescript

\starttypescript [serif] [minionpro]
   \definefontsynonym [Serif]   [MinionPro-Regular] 
[features=default]
   \definefontsynonym [SerifBold]   [MinionPro-Bold] 
[features=default]
   \definefontsynonym [SerifItalic] [MinionPro-Italic] 
[features=default]
   \definefontsynonym [SerifBoldItalic] [MinionPro-BoldItalic] 
[features=default]
   %\definefontsynonym [SerifSlanted]  [SerifItalic] 
[features=default]
   \definefontsynonym [SerifCaps]   [Serif] 
[features=latin-smallcaps]
\stoptypescript



Mohamed


Re: [NTG-context] Max runs

2008-10-09 Thread Yue Wang
Hi,

I have a document that has 3 runs in MKIV, but more than 10 runs in MKII:(

Yue Wang
On Thu, Oct 9, 2008 at 10:12 PM, luigi scarso [EMAIL PROTECTED] wrote:
 Hi
 sorry for the noise
 but with last luatex I have 8 runs now for my catalog.
 Almost for sure a bug of mine,
 but how can I limit the numbers of runs ?
 I know only
 context --once

 --
 luigi


 ___
 If your question is of interest to others as well, please add an entry to
 the Wiki!

 maillist : ntg-context@ntg.nl /
 http://www.ntg.nl/mailman/listinfo/ntg-context
 webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
 archive  : 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] Has anybody used asymptote without LaTeX?

2008-10-09 Thread Zhichu Chen
Hi, all,

It's me again. Since Asymptote 1.44 has been released, I don't have
to compile it myself. So I played a little bit and find out that if I don't
want labels nor produce a pdf format of that image, I can live without
LaTeX. That's kind of a good news.

If I want to embed the .prc file into a pdf document, all I need to do
is specify the correct /Subtype and mime type. That's very easy. I
think creating 3D presentations without any commercial or mouse-
clicking-GUI interface becomes realistic now.


-- 
Best Regards
Chen


  Zhi-chu Chen | Shanghai Synchrotron Radiation Facility
 No. 2019 | Jialuo Rd. | Jiading | Shanghai | P.R. China
 tel: 086 21 5955 3405 | zhichu.chen.googlepages.com
   | www.sinap.ac.cn

___
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
___