ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Re: to keep you busy ...
       [not found] <5.1.0.14.1.20030204001753.0345b738@server-1>
@ 2003-02-04  0:28 ` Bruce D'Arcus
  2003-02-04 12:35   ` Hans Hagen
  0 siblings, 1 reply; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-04  0:28 UTC (permalink / raw)



Am sending this to the list Hans, because I have some bizarre bug in my 
mail app or system that doesn't allow me to send message to you 
directly.  I have no idea what is going on , but you're literally the 
only person this happens to!

On Monday, February 3, 2003, at 06:21  PM, Hans Hagen wrote:

>
> this is not fixed, finished, just for you to play with

Thanks!  But...now what?

Let's take my earlier LaTeX example:

\DeclareFontShape{T1}{minion}{m}{n}{
     <-6>  MinionPro-SemiboldCapt-8t
    <6-9>  MinionPro-Capt-8t
    <9-12> MinionPro-Regular-8t
   <12-15> MinionPro-Subh-8t
   <15->   MinionPro-Disp-8t}{\romanprotruding}

And the typescript as it currently stands:

\starttypescript [serif] [minionpro] [texnansi]

   \definefontsynonym[MinionPro-Bold]        [MinionPro-Bold-8y] 
[encoding=texnansi]
   \definefontsynonym[MinionPro-BoldItalic] 
[MinionPro-BoldIt-8y][encoding=texnansi]
   \definefontsynonym[MinionPro-BoldSlanted] 
[MinionPro-BoldIt-8y][encoding=texnansi]
   \definefontsynonym[MinionPro-Caps]      [MinionPro-Regular-SC-8y] 
[encoding=texnansi]
   \definefontsynonym[MinionPro-BoldCaps]      [MinionPro-Bold-SC-8y] 
[encoding=texnansi]
   \definefontsynonym[MinionPro-Regular]        [MinionPro-Regular-8y] 
[encoding=texnansi]
   \definefontsynonym[MinionPro-RegularItalic] 
[MinionPro-It-8y][encoding=texnansi]
   \definefontsynonym[MinionPro-RegularSlanted] 
[MinionPro-It-8y][encoding=texnansi]

\stoptypescript

So what do I add to the above so that, for example, MinionPro-Capt-8y 
is used as the roman default at font sizes between 6 and 9 pt, 
MinionPro-Regular-8y between 9 and 12, etc.?

Remember: I'm not a programmer, and I still get confused by the font 
mechanism that is already there ;-)

Bruce

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: Re: to keep you busy ...
  2003-02-04  0:28 ` to keep you busy Bruce D'Arcus
@ 2003-02-04 12:35   ` Hans Hagen
  2003-02-04 15:08     ` Bruce D'Arcus
  0 siblings, 1 reply; 33+ messages in thread
From: Hans Hagen @ 2003-02-04 12:35 UTC (permalink / raw)


At 07:28 PM 2/3/2003 -0500, Bruce D'Arcus wrote:

Thanks!  But...now what?

>Let's take my earlier LaTeX example:
>
>\DeclareFontShape{T1}{minion}{m}{n}{
>     <-6>  MinionPro-SemiboldCapt-8t
>    <6-9>  MinionPro-Capt-8t
>    <9-12> MinionPro-Regular-8t
>   <12-15> MinionPro-Subh-8t
>   <15->   MinionPro-Disp-8t}{\romanprotruding}
>
>And the typescript as it currently stands:
>
>\starttypescript [serif] [minionpro] [texnansi]
>
>   \definefontsynonym[MinionPro-Bold]        [MinionPro-Bold-8y] 
> [encoding=texnansi]
>   \definefontsynonym[MinionPro-BoldItalic] 
> [MinionPro-BoldIt-8y][encoding=texnansi]
>   \definefontsynonym[MinionPro-BoldSlanted] 
> [MinionPro-BoldIt-8y][encoding=texnansi]
>   \definefontsynonym[MinionPro-Caps]      [MinionPro-Regular-SC-8y] 
> [encoding=texnansi]
>   \definefontsynonym[MinionPro-BoldCaps]      [MinionPro-Bold-SC-8y] 
> [encoding=texnansi]
>   \definefontsynonym[MinionPro-Regular]        [MinionPro-Regular-8y] 
> [encoding=texnansi]
>   \definefontsynonym[MinionPro-RegularItalic] 
> [MinionPro-It-8y][encoding=texnansi]
>   \definefontsynonym[MinionPro-RegularSlanted] 
> [MinionPro-It-8y][encoding=texnansi]
>
>\stoptypescript
>
>So what do I add to the above so that, for example, MinionPro-Capt-8y is 
>used as the roman default at font sizes between 6 and 9 pt, 
>MinionPro-Regular-8y between 9 and 12, etc.?

\definefontsynonym
   [AutoSerif]
   [\fontrange
      {MinionPro-Caps    <10pt
       MinionPro-Regular <12pt
       MinionPro-Disp    <15pt
       MinionPro-Something}]

and then

   \definefontsynonym[MinionPro-Caps][MinionPro-regular-SC-8y][encoding=texnansi]

with for instance

   \definefont[BigTitleFont][AutoSerif sa 2]

and alike; it all depends on how you want to use it


>Remember: I'm not a programmer, and I still get confused by the font 
>mechanism that is already there ;-)

i'm no programmer either (educational technology, long ago -)

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: Re: to keep you busy ...
  2003-02-04 12:35   ` Hans Hagen
@ 2003-02-04 15:08     ` Bruce D'Arcus
  2003-02-05  9:26       ` Hans Hagen
  0 siblings, 1 reply; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-04 15:08 UTC (permalink / raw)



Thanks!  See below...

On Tuesday, February 4, 2003, at 07:35  AM, Hans Hagen wrote:

> \definefontsynonym
>   [AutoSerif]
>   [\fontrange
>      {MinionPro-Caps    <10pt
>       MinionPro-Regular <12pt
>       MinionPro-Disp    <15pt
>       MinionPro-Something}]
>
> and then
>
>    
> \definefontsynonym[MinionPro-Caps][MinionPro-regular-SC- 
> 8y][encoding=texnansi]
>
> with for instance
>
>   \definefont[BigTitleFont][AutoSerif sa 2]
>
> and alike; it all depends on how you want to use it

Let's just say I only want to specify a single command that says "use  
minionpro-osf." This command would then automatically apply the regular  
font to the body text, the caption to the footnotes, and the display  
(which you've given the synonym BigTitleFont) for, well, the title.

That'll work here?  Just want to make sure, as I sometimes get really  
lost when I start trying to do this kind of thing with ConTeXt :-)

Bruce

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: Re: to keep you busy ...
  2003-02-04 15:08     ` Bruce D'Arcus
@ 2003-02-05  9:26       ` Hans Hagen
  2003-02-05 18:12         ` typescripts again (was to keep you busy ...) Bruce D'Arcus
  0 siblings, 1 reply; 33+ messages in thread
From: Hans Hagen @ 2003-02-05  9:26 UTC (permalink / raw)


At 10:08 AM 2/4/2003 -0500, you wrote:

Let's just say I only want to specify a single command that says "use
>minionpro-osf." This command would then automatically apply the regular
>font to the body text, the caption to the footnotes, and the display
>(which you've given the synonym BigTitleFont) for, well, the title.
>
>That'll work here?  Just want to make sure, as I sometimes get really
>lost when I start trying to do this kind of thing with ConTeXt :-)

that depends on how you've set up footnotes and alike; as long as 
bodyfontswitches are used, it should work since this method looks at the 
current bodyfontsize

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

* typescripts again (was to keep you busy ...)
  2003-02-05  9:26       ` Hans Hagen
@ 2003-02-05 18:12         ` Bruce D'Arcus
  2003-02-05 21:00           ` Jens-Uwe Morawski
  2003-02-07  9:28           ` Hans Hagen
  0 siblings, 2 replies; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-05 18:12 UTC (permalink / raw)



Before I deal with the auto-sizing thing, I need to just get this font 
to work, and no matter what I do I can't seem to do that!

Note: there is no problem on the TeX end, as this font works fine with 
LaTeX.  Any help greatly appreciated. I have put everything in a single 
file for now, so that I don't have to worry about problems elsewhere 
(say with loading an environment or typescript file).

Bruce

============


\starttypescript [serif] [minionpro] [name]

   \definefontsynonym [Serif]               [MinionPro-Regular]
   \definefontsynonym [SerifCaps]           [MinionPro-Caps]
   \definefontsynonym [SerifCaps]           [MinionPro-BoldCaps]
   \definefontsynonym [SerifSlanted]        [MinionPro-RegularItalic]
   \definefontsynonym [SerifItalic]         [MinionPro-RegularItalic]
   \definefontsynonym [SerifBold]           [MinionPro-Bold]
   \definefontsynonym [SerifBoldSlanted]    [MinionPro-BoldItalic]
   \definefontsynonym [SerifBoldItalic]     [MinionPro-BoldItalic]

\stoptypescript

\starttypescript [serif] [minionpro-osf] [texnansi]

   \definefontsynonym[MinionPro-Bold]        [MinionPro-Bold-OSF-8y] 
[encoding=texnansi]
   \definefontsynonym[MinionPro-BoldItalic] 
[MinionPro-BoldIt-OSF-8y][encoding=texnansi]
   \definefontsynonym[MinionPro-BoldSlanted] 
[MinionPro-BoldIt-OSF-8y][encoding=texnansi]
   \definefontsynonym[MinionPro-Caps]      [MinionPro-Regular-OSFSC-8y] 
[encoding=texnansi]
   \definefontsynonym[MinionPro-BoldCaps]      [MinionPro-Bold-OSFSC-8y] 
[encoding=texnansi]
   \definefontsynonym[MinionPro-Regular]        
[MinionPro-Regular-OSF-8y] [encoding=texnansi]
   \definefontsynonym[MinionPro-RegularItalic] 
[MinionPro-It-OSF-8y][encoding=texnansi]
   \definefontsynonym[MinionPro-RegularSlanted] 
[MinionPro-It-OSF-8y][encoding=texnansi]

\stoptypescript

\definetypeface [maintext] [rm] [serif] [minionpro-osf]
   [default] [encoding=texnansi]
\definetypeface [maintext] [ss] [sans]  [gillsans]
   [default] [encoding=texnansi]
\definetypeface [maintext] [tt] [mono]  [computer-modern]
   [default] [encoding=default,rscale=1.1]
\definetypeface [maintext] [mm] [math]  [times]
   [default] [encoding=default,rscale=1.1]

\setupbodyfont[maintext,rm,10pt]

\starttext

\title{A Title}

\section{A Section Heading}

Here is some text, 1234567890...

{\sc Small Caps}

\stoptext

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-05 18:12         ` typescripts again (was to keep you busy ...) Bruce D'Arcus
@ 2003-02-05 21:00           ` Jens-Uwe Morawski
  2003-02-05 21:13             ` Bruce D'Arcus
  2003-02-07  9:28           ` Hans Hagen
  1 sibling, 1 reply; 33+ messages in thread
From: Jens-Uwe Morawski @ 2003-02-05 21:00 UTC (permalink / raw)


On Wed, 5 Feb 2003 13:12:35 -0500
"Bruce D'Arcus" <bdarcus@fastmail.fm> wrote:

> 
> Before I deal with the auto-sizing thing, I need to just get this font 
> to work, and no matter what I do I can't seem to do that!
> 
> Note: there is no problem on the TeX end, as this font works fine with 
> LaTeX.  Any help greatly appreciated. I have put everything in a single 
> file for now, so that I don't have to worry about problems elsewhere 
> (say with loading an environment or typescript file).


If i read my log-files correctly then each \definetypeface queries
all typescripts completely for matching entries. Therefore, afaik,
the typescripts have be in their own file.
\usetypescriptfile makes this file known to ConTeXt.

Jens

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-05 21:00           ` Jens-Uwe Morawski
@ 2003-02-05 21:13             ` Bruce D'Arcus
  2003-02-06  1:55               ` Jens-Uwe Morawski
  0 siblings, 1 reply; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-05 21:13 UTC (permalink / raw)



On Wednesday, February 5, 2003, at 04:00 PM, Jens-Uwe Morawski wrote:

> If i read my log-files correctly then each \definetypeface queries
> all typescripts completely for matching entries. Therefore, afaik,
> the typescripts have be in their own file.
> \usetypescriptfile makes this file known to ConTeXt.

Hmm...which puts me back where I started: with a separate typescript 
file that doesn't work.

I haven't the least clue why this isn't working, as a few people 
(including you) gave feedback on the earlier files I sent, and I 
corrected the minor problems.  Still no luck.

Bruce

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-05 21:13             ` Bruce D'Arcus
@ 2003-02-06  1:55               ` Jens-Uwe Morawski
  2003-02-06  2:40                 ` Bruce D'Arcus
  0 siblings, 1 reply; 33+ messages in thread
From: Jens-Uwe Morawski @ 2003-02-06  1:55 UTC (permalink / raw)


On Wed, 5 Feb 2003 16:13:23 -0500
"Bruce D'Arcus" <bdarcus@fastmail.fm> wrote:

> 
> On Wednesday, February 5, 2003, at 04:00 PM, Jens-Uwe Morawski wrote:
> 
> > If i read my log-files correctly then each \definetypeface queries
> > all typescripts completely for matching entries. Therefore, afaik,
> > the typescripts have be in their own file.
> > \usetypescriptfile makes this file known to ConTeXt.
> 
> Hmm...which puts me back where I started: with a separate typescript 
> file that doesn't work.

What means "doesn't work"? Can you run the example from your previous
mail (with a seperate type-script file) and send the log here

Jens

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-06  1:55               ` Jens-Uwe Morawski
@ 2003-02-06  2:40                 ` Bruce D'Arcus
  2003-02-06 12:58                   ` Jens-Uwe Morawski
  2003-02-07 11:46                   ` typescripts again (was to keep you busy ...) mari.voipio
  0 siblings, 2 replies; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-06  2:40 UTC (permalink / raw)



On Wednesday, February 5, 2003, at 08:55  PM, Jens-Uwe Morawski wrote:

> Can you run the example from your previous
> mail (with a seperate type-script file) and send the log here

Here it is.  Thanks in advance!

====================================
  TeXExec 3.1 - ConTeXt / PRAGMA ADE 1997-2002

             executable : pdfetex
                 format : cont-en
              inputfile : cMP
                 output : pdftex
              interface : en
           current mode : none
                TeX run : 1

This is pdfeTeX, Version 3.14159-1.00b-pretest-20020211-2.1 (Web2C  
7.3.7x)
entering extended mode
(./cMP.tex{/usr/local/teTeX/share/texmf.local/pdftex/config/pdftex.cfg}

ConTeXt  ver: 2003.1.10  fmt: 2003.1.12  int: english  mes: english

language       : language en is active
<protectionstate 0>
system         : cont-new loaded
(/Users/bdarcus/Library/texmf/tex/context/base/cont-new.tex
systems        : beware: some patches loaded from cont-new.tex!
system (E-TEX) : [line 1497] \ifcsname
)
system         : cont-old loaded
(/Users/bdarcus/Library/texmf/tex/context/base/cont-old.tex
loading        : Context Old Macros
)
system         : cont-fil loaded
(/Users/bdarcus/Library/texmf/tex/context/base/cont-fil.tex
loading        : Context File Synonyms
)
bodyfont       : 12pt rm is loaded
language       : patterns 2:2-en-2 3:2-uk-2 4:2-de-2 5:2-fr-2 7:2-it-2  
8:2-nl-2
  loaded
specials       : tex,postscript,rokicki loaded
system         : cMP.top loaded
(./cMP.top
specials       : loading definition file tpd
(/Users/bdarcus/Library/texmf/tex/context/base/spec-tpd.tex
specials       : loading definition file fdf
(/Users/bdarcus/Library/texmf/tex/context/base/spec-fdf.tex <unprotect  
3>
<unprotect 4>
system (E-TEX) : [line 1805] \ifcsname
<unprotect 5> <protect 5> <protect 4> <protect 3>)
specials       : fdf loaded
<unprotect 3> <protect 3>)
specials       : fdf,tpd loaded
)
pdftex         : needs map file: original-context-symbol.map
pdftex         : needs map file: pl0-ams-cmr.map
pdftex         : needs map file: original-vogel-symbol.map
(/Users/bdarcus/Library/texmf/tex/context/minionpro-osf.tex
typeface       : [maintext] [rm] [serif] [minionpro-osf]
typescript     : [map] [texnansi] []
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex
pdftex         : needs map file: original-ams-cmr.map
pdftex         : needs map file: original-ams-euler.map
pdftex         : needs map file: texnansi-adobe-utopia.map
pdftex         : needs map file: texnansi-bit-charter.map
pdftex         : needs map file: texnansi-public-antp.map
pdftex         : needs map file: texnansi-public-antt.map
pdftex         : needs map file: texnansi-urw-bookman.map
pdftex         : needs map file: texnansi-urw-courier.map
pdftex         : needs map file: texnansi-urw-helvetica.map
pdftex         : needs map file: texnansi-urw-palatino.map
pdftex         : needs map file: texnansi-urw-times.map
pdftex         : needs map file: texnansi-urw-zapfchan.map
pdftex         : needs map file: original-youngryu-px.map
pdftex         : needs map file: original-youngryu-tx.map
pdftex         : needs map file: texnansi-bh-lucida.map
) (/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typescript     : [serif] [minionpro-osf] [name,default,texnansi,special]
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typescript     : [serif] [default] [size]
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typeface       : [maintext] [ss] [sans] [gillsans]
typescript     : [map] [texnansi] []
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typescript     : [sans] [gillsans] [name,default,texnansi,special]
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typescript     : [sans] [default] [size]
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typeface       : [maintext] [tt] [mono] [computer-modern]
typescript     : [map] [default] []
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex
pdftex         : needs map file: original-micropress-informal.map
) (/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typescript     : [mono] [computer-modern] [name,default,default,special]
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typescript     : [mono] [default] [size]
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typeface       : [maintext] [mm] [math] [times]
typescript     : [map] [default] []
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typescript     : [math] [times] [name,default,default,special]
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)
typescript     : [math] [default] [size]
(/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
(/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex))  
(./cMP.tuo)
(./cMP.tuo) (./cMP.tuo) (./cMP.tuo) (./cMP.tuo) (./cMP.tuo) (./cMP.tuo)
(./cMP.tuo) (./cMP.tuo) (./cMP.tuo) (./cMP.tuo) (./cMP.tuo) (./cMP.tuo)
systems        : begin file cMP at line 5
title          : - A Title
section        : 1 A Section Heading
[1.1{/usr/local/teTeX/share/texmf.local/dvips/config/pdftex.map
Warning: pdfetex (file  
/usr/local/teTeX/share/texmf.local/dvips/config/pdftex.m
ap): entry for `MinionPro-Subh-SC-8y' already exists, duplicates ignored
}{/Users/bdarcus/Library/texmf/pdftex/config/ebc.map}{/Users/bdarcus/ 
FontKit/te
xmf/dvips/mm/mm-instance.map}{/Users/bdarcus/FontKit/texmf/dvips/ly1/ 
ly1-loadin
g.map}{/Users/bdarcus/Library/texmf/pdftex/config/texnansi-adobe- 
myriad.map}{/U
sers/bdarcus/Library/texmf/pdftex/config/original-context-symbol.map
Warning: pdfetex (file  
/Users/bdarcus/Library/texmf/pdftex/config/original-cont
ext-symbol.map): entry for `contnav' already exists, duplicates ignored
}
Warning: pdfetex (file plO-ams-cmr.map): cannot open font map file
{/Users/bdarcus/Library/texmf/pdftex/config/original-vogel-symbol.map
Warning: pdfetex (file  
/Users/bdarcus/Library/texmf/pdftex/config/original-voge
l-symbol.map): entry for `fmvr8x' already exists, duplicates ignored
}{/Users/bdarcus/Library/texmf/pdftex/config/texnansi-linotype- 
lsyntax.map}{/Us
ers/bdarcus/Library/texmf/pdftex/config/pad.map}{/Users/bdarcus/ 
Library/texmf/d
vips/config/pmn.map}{/Users/bdarcus/Library/texmf/dvips/config/ 
pmd.map}{/Users/
bdarcus/Library/texmf/pdftex/config/mgs.map}{/Users/bdarcus/Library/ 
texmf/pdfte
x/config/lop.map}{/Users/bdarcus/Library/texmf/pdftex/config/eht.map}{/ 
Users/bd
arcus/Library/texmf/pdftex/config/5sb.map}{/Users/bdarcus/Library/ 
texmf/pdftex/
config/lsx.map}{/Users/bdarcus/Library/texmf/pdftex/config/hlb.map}{/ 
Users/bdar
cus/Library/texmf/pdftex/config/hls.map}{/Users/bdarcus/Library/texmf/ 
pdftex/co
nfig/jge.map}{/Users/bdarcus/Library/texmf/pdftex/config/jve.map}{/ 
Users/bdarcu
s/Library/texmf/pdftex/config/ptk.map}{/usr/local/teTeX/share/texmf.os/ 
dvips/co
nfig/Ttbbold.map}{/usr/local/teTeX/share/texmf.os/dvips/config/ 
wolfram.map}]
systems        : end file cMP at line 15
   
)</usr/local/teTeX/share/texmf/fonts/type1/bluesky/cm/cmcsc10.pfb></ 
usr/local/
teTeX/share/texmf/fonts/type1/bluesky/cm/cmr10.pfb>
Output written on cMP.pdf (1 page, 13830 bytes).
Transcript written on cMP.log.

               run time : 26 seconds
   sorting and checking : running texutil

  TeXUtil 7.4 - ConTeXt / PRAGMA ADE 1992-2002

                 action : processing commands, lists and registers
                 option : sorting IJ under Y
                 option : converting high ASCII values
             input file : cMP.tui
            output file : cMP.tuo
        passed commands : 10
          remapped keys : 0
       register entries : 0 -> 0 entries 0 references
        synonym entries : 0 -> 0 entries
         embedded files : 1

         total run time : 28 seconds

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-06  2:40                 ` Bruce D'Arcus
@ 2003-02-06 12:58                   ` Jens-Uwe Morawski
  2003-02-06 14:53                     ` Bruce D'Arcus
                                       ` (2 more replies)
  2003-02-07 11:46                   ` typescripts again (was to keep you busy ...) mari.voipio
  1 sibling, 3 replies; 33+ messages in thread
From: Jens-Uwe Morawski @ 2003-02-06 12:58 UTC (permalink / raw)


On Wed, 5 Feb 2003 21:40:18 -0500
"Bruce D'Arcus" <bdarcus@fastmail.fm> wrote:

> 
> On Wednesday, February 5, 2003, at 08:55  PM, Jens-Uwe Morawski wrote:
> 
> > Can you run the example from your previous
> > mail (with a seperate type-script file) and send the log here
> 

> typescript     : [serif] [minionpro-osf] [name,default,texnansi,special]
> (/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
> (/Users/bdarcus/Library/texmf/tex/context/base/type-enc.tex)
> (/Users/bdarcus/Library/texmf/tex/context/base/type-siz.tex)
> (/Users/bdarcus/Library/texmf/tex/context/base/type-map.tex)
> (/Users/bdarcus/Library/texmf/tex/context/base/type-spe.tex)
> (/Users/bdarcus/Library/texmf/tex/context/base/type-exa.tex)

Here your type-script is not loaded. For example, if you have your
type-script (i assume its name is type-minion.tex) located in
/Users/bdarcus/Library/texmf-local/tex/context/user/type-minion.tex
then should be here (and for each other typescript-message) an
log entry like:
(/Users/bdarcus/Library/texmf-local/tex/context/user/type-minion.tex)

Thus, check if your type-script can be found; run
kpsewhich <your-typescript-file-name>
in your document-directory for example:
kpsewhich type-minion.tex

and check for misspellings, since ConTeXt gives no error message
if you declare a typescript-file via
\usetypescriptfile[type-minionn]
but its name is type-minion.tex

BTW, Hans, can you add a log-warning for unknown typescript files.

> typescript     : [serif] [default] [size]
> (/Users/bdarcus/Library/texmf/tex/context/base/type-syn.tex)
> [...]

Best,
  Jens

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-06 12:58                   ` Jens-Uwe Morawski
@ 2003-02-06 14:53                     ` Bruce D'Arcus
  2003-02-06 14:58                       ` Taco Hoekwater
                                         ` (2 more replies)
       [not found]                     ` <20030207145950.7CEAE45212@server2.fastmail.fm>
       [not found]                     ` <20030208192136.06028471E1@server2.fastmail.fm>
  2 siblings, 3 replies; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-06 14:53 UTC (permalink / raw)



Thanks Jens.  I still don't see anything obvious though (see below)....

On Thursday, February 6, 2003, at 07:58  AM, Jens-Uwe Morawski wrote:

> Thus, check if your type-script can be found; run
> kpsewhich <your-typescript-file-name>
> in your document-directory for example:
> kpsewhich type-minion.tex
>
> and check for misspellings, since ConTeXt gives no error message
> if you declare a typescript-file via
> \usetypescriptfile[type-minionn]
> but its name is type-minion.tex

Here's what I get:

bdarcus% kpsewhich type-OpenTypePro.tex
/Users/bdarcus/Library/texmf/tex/context/user/type-OpenTypePro.tex

And this is copied from my environment file:

\usetypescriptfile[type-OpenTypePro]

No typos, soo...???



Here's the document source, BTW:

\environment minionpro-osf.tex

\starttext

\title{A Title}

\section{A Section Heading}

Here is some text, 1234567890...

\stoptext

Bruce

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-06 14:53                     ` Bruce D'Arcus
@ 2003-02-06 14:58                       ` Taco Hoekwater
  2003-02-06 15:12                         ` Bruce D'Arcus
  2003-02-06 16:47                       ` Hans Hagen
  2003-02-06 16:53                       ` Jens-Uwe Morawski
  2 siblings, 1 reply; 33+ messages in thread
From: Taco Hoekwater @ 2003-02-06 14:58 UTC (permalink / raw)



Wanna bet that context is looking for type-Ope.tex ?


On Thu, 6 Feb 2003 09:53:13 -0500, Bruce wrote:

> 
> Thanks Jens.  I still don't see anything obvious though (see below)....
> 
> On Thursday, February 6, 2003, at 07:58  AM, Jens-Uwe Morawski wrote:
> 
> > Thus, check if your type-script can be found; run
> > kpsewhich <your-typescript-file-name>
> > in your document-directory for example:
> > kpsewhich type-minion.tex
> >
> > and check for misspellings, since ConTeXt gives no error message
> > if you declare a typescript-file via
> > \usetypescriptfile[type-minionn]
> > but its name is type-minion.tex
> 
> Here's what I get:
> 
> bdarcus% kpsewhich type-OpenTypePro.tex
> /Users/bdarcus/Library/texmf/tex/context/user/type-OpenTypePro.tex
> 
> And this is copied from my environment file:
> 
> \usetypescriptfile[type-OpenTypePro]
> 
> No typos, soo...???
> 
> 
> 
> Here's the document source, BTW:
> 
> \environment minionpro-osf.tex
> 
> \starttext
> 
> \title{A Title}
> 
> \section{A Section Heading}
> 
> Here is some text, 1234567890...
> 
> \stoptext
> 
> Bruce
> 
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context


-- 
groeten,

Taco

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-06 14:58                       ` Taco Hoekwater
@ 2003-02-06 15:12                         ` Bruce D'Arcus
  0 siblings, 0 replies; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-06 15:12 UTC (permalink / raw)



On Thursday, February 6, 2003, at 09:58  AM, Taco Hoekwater wrote:

> Wanna bet that context is looking for type-Ope.tex ?

I hadn't thought about that one!  But changing the typescriptfile name 
to type-OTP.tex also has no effect.

Bruce

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-06 14:53                     ` Bruce D'Arcus
  2003-02-06 14:58                       ` Taco Hoekwater
@ 2003-02-06 16:47                       ` Hans Hagen
  2003-02-06 16:53                       ` Jens-Uwe Morawski
  2 siblings, 0 replies; 33+ messages in thread
From: Hans Hagen @ 2003-02-06 16:47 UTC (permalink / raw)


At 09:53 AM 2/6/2003 -0500, you wrote:

>Thanks Jens.  I still don't see anything obvious though (see below)....
>
>On Thursday, February 6, 2003, at 07:58  AM, Jens-Uwe Morawski wrote:
>
>>Thus, check if your type-script can be found; run
>>kpsewhich <your-typescript-file-name>
>>in your document-directory for example:
>>kpsewhich type-minion.tex
>>
>>and check for misspellings, since ConTeXt gives no error message
>>if you declare a typescript-file via
>>\usetypescriptfile[type-minionn]
>>but its name is type-minion.tex
>
>Here's what I get:
>
>bdarcus% kpsewhich type-OpenTypePro.tex
>/Users/bdarcus/Library/texmf/tex/context/user/type-OpenTypePro.tex
>
>And this is copied from my environment file:
>
>\usetypescriptfile[type-OpenTypePro]
>
>No typos, soo...???

is this a case sensitive problem?

i'm upgrading the file search mechsnism (faster, optional tracing), so some 
day soon it will be easier to track this down

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-06 14:53                     ` Bruce D'Arcus
  2003-02-06 14:58                       ` Taco Hoekwater
  2003-02-06 16:47                       ` Hans Hagen
@ 2003-02-06 16:53                       ` Jens-Uwe Morawski
  2003-02-06 17:25                         ` Bruce D'Arcus
  2 siblings, 1 reply; 33+ messages in thread
From: Jens-Uwe Morawski @ 2003-02-06 16:53 UTC (permalink / raw)


On Thu, 6 Feb 2003 09:53:13 -0500
"Bruce D'Arcus" <bdarcus@fastmail.fm> wrote:

> 
> Thanks Jens.  I still don't see anything obvious though (see below)....
> 
> On Thursday, February 6, 2003, at 07:58  AM, Jens-Uwe Morawski wrote:
> 
> > Thus, check if your type-script can be found; run
> > kpsewhich <your-typescript-file-name>
> > in your document-directory for example:
> > kpsewhich type-minion.tex
> >
> > and check for misspellings, since ConTeXt gives no error message
> > if you declare a typescript-file via
> > \usetypescriptfile[type-minionn]
> > but its name is type-minion.tex
> 
> Here's what I get:
> 
> bdarcus% kpsewhich type-OpenTypePro.tex
> /Users/bdarcus/Library/texmf/tex/context/user/type-OpenTypePro.tex
> 
> And this is copied from my environment file:
> 
> \usetypescriptfile[type-OpenTypePro]
> 
> No typos, soo...???
> 
> 
> 
> Here's the document source, BTW:
> 
> \environment minionpro-osf.tex

Please, step by step! Thus, try it first without an environment-file.
In your TeX-file load the typescript using \usetypescriptfile, make
your \definetypeface definitions there (the definition for rm/serif
should be enough), setup your body-font and let us see what happens.

Jens  

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-06 16:53                       ` Jens-Uwe Morawski
@ 2003-02-06 17:25                         ` Bruce D'Arcus
  2003-02-06 21:03                           ` Jens-Uwe Morawski
  0 siblings, 1 reply; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-06 17:25 UTC (permalink / raw)



On Thursday, February 6, 2003, at 11:53  AM, Jens-Uwe Morawski wrote:

> Thus, try it first without an environment-file.
> In your TeX-file load the typescript using \usetypescriptfile, make
> your \definetypeface definitions there (the definition for rm/serif
> should be enough), setup your body-font and let us see what happens.

Here's the file, which doesn't work either:

\usetypescriptfile[type-OTP]

\definetypeface [maintext] [rm] [serif] [minionpro-osf][default] 
[encoding=texnansi]
\definetypeface [maintext] [ss] [sans] [gillsans] [default] 
[encoding=texnansi]

\setupbodyfont[maintext,rm,serif,10pt]

\starttext

\title{A Title}

\section{A Section Heading}

Here is some text, 1234567890...

{\sc Q Small Caps}

\stoptext

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-06 17:25                         ` Bruce D'Arcus
@ 2003-02-06 21:03                           ` Jens-Uwe Morawski
  0 siblings, 0 replies; 33+ messages in thread
From: Jens-Uwe Morawski @ 2003-02-06 21:03 UTC (permalink / raw)


On Thu, 6 Feb 2003 12:25:05 -0500
"Bruce D'Arcus" <bdarcus@fastmail.fm> wrote:

> 
> On Thursday, February 6, 2003, at 11:53  AM, Jens-Uwe Morawski wrote:
> 
> > Thus, try it first without an environment-file.
> > In your TeX-file load the typescript using \usetypescriptfile, make
> > your \definetypeface definitions there (the definition for rm/serif
> > should be enough), setup your body-font and let us see what happens.
> 
> Here's the file, which doesn't work either:

i'm puzzled. AFAIK, MacOS X (it seems that you work with this system)
has internally a not case-sensitive file-system. Maybe, this confuses
the kpathsee library.

 
> \usetypescriptfile[type-OTP]
> 
> \definetypeface [maintext] [rm] [serif] [minionpro-osf][default] 
> [encoding=texnansi]
> \definetypeface [maintext] [ss] [sans] [gillsans] [default] 
> [encoding=texnansi]
> 
> \setupbodyfont[maintext,rm,serif,10pt]


 \setupbodyfont[maintext,rm,10pt] should be enough

Jens

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-05 18:12         ` typescripts again (was to keep you busy ...) Bruce D'Arcus
  2003-02-05 21:00           ` Jens-Uwe Morawski
@ 2003-02-07  9:28           ` Hans Hagen
  2003-02-07 15:18             ` Bruce D'Arcus
  1 sibling, 1 reply; 33+ messages in thread
From: Hans Hagen @ 2003-02-07  9:28 UTC (permalink / raw)


At 01:12 PM 2/5/2003 -0500, Bruce D'Arcus wrote:

>Before I deal with the auto-sizing thing, I need to just get this font to 
>work, and no matter what I do I can't seem to do that!
>
>Note: there is no problem on the TeX end, as this font works fine with 
>LaTeX.  Any help greatly appreciated. I have put everything in a single 
>file for now, so that I don't have to worry about problems elsewhere (say 
>with loading an environment or typescript file).
>
>Bruce
>
>============
>
>
>\starttypescript [serif] [minionpro] [name]
>
>\starttypescript [serif] [minionpro-osf] [texnansi]
>
>\definetypeface [maintext] [rm] [serif] [minionpro-osf]
>   [default] [encoding=texnansi]

i think that the first typescript should be minionpro-osf

I'll send you a version of type-ini with tracing (\tracetypescriptstrue) 
(no fun on your slow terminal)

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-06  2:40                 ` Bruce D'Arcus
  2003-02-06 12:58                   ` Jens-Uwe Morawski
@ 2003-02-07 11:46                   ` mari.voipio
  2003-02-07 12:00                     ` Adam Lindsay
  2003-02-07 14:13                     ` Hans Hagen
  1 sibling, 2 replies; 33+ messages in thread
From: mari.voipio @ 2003-02-07 11:46 UTC (permalink / raw)



The fight towards understanding the font mechanism continues...

On Wed, 5 Feb 2003, Bruce D'Arcus wrote:
> ====================================
<clipclip>
> pdftex         : needs map file: original-context-symbol.map
> pdftex         : needs map file: pl0-ams-cmr.map
> pdftex         : needs map file: original-vogel-symbol.map
<clipclip>

WHAT in the compilation system says that these are to be loaded? Since I
turned on (i.e. uncommented) the /autoloadmapfilestrue setting in my
cont-sys.tex to make the fonts work, it seems that the three above
mentioned map files are loaded twice, first here in the very beginning and
then somewhere a bit later, so I get all these annoying warnings about
"Warning: pdfetex.exe (file
c:/TeXLive/texmf/pdftex/config/context/pl0-ams-cmr.map): entry for
`pltt9' already exists, duplicates ignored"

While this is less of a problem than not having the fonts at all, I'd like
to get rid of it, if possible...


Mari

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-07 11:46                   ` typescripts again (was to keep you busy ...) mari.voipio
@ 2003-02-07 12:00                     ` Adam Lindsay
  2003-02-07 14:13                     ` Hans Hagen
  1 sibling, 0 replies; 33+ messages in thread
From: Adam Lindsay @ 2003-02-07 12:00 UTC (permalink / raw)


mari.voipio@iki.fi said this at Fri, 7 Feb 2003 13:46:46 +0200:

>"Warning: pdfetex.exe (file
>c:/TeXLive/texmf/pdftex/config/context/pl0-ams-cmr.map): entry for
>`pltt9' already exists, duplicates ignored"
>
>While this is less of a problem than not having the fonts at all, I'd like
>to get rid of it, if possible...

Very much agreed... these warning messages are what make my system (in a
certain configuration) slow down to a crawl.

adam


-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Adam T. Lindsay                      atl@comp.lancs.ac.uk
 Computing Dept, Lancaster University   +44(0)1524/594.537
 Lancaster, LA1 4YR, UK             Fax:+44(0)1524/593.608
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-07 11:46                   ` typescripts again (was to keep you busy ...) mari.voipio
  2003-02-07 12:00                     ` Adam Lindsay
@ 2003-02-07 14:13                     ` Hans Hagen
  1 sibling, 0 replies; 33+ messages in thread
From: Hans Hagen @ 2003-02-07 14:13 UTC (permalink / raw)


At 01:46 PM 2/7/2003 +0200, you wrote:

>The fight towards understanding the font mechanism continues...
>
>On Wed, 5 Feb 2003, Bruce D'Arcus wrote:
> > ====================================
><clipclip>
> > pdftex         : needs map file: original-context-symbol.map
> > pdftex         : needs map file: pl0-ams-cmr.map
> > pdftex         : needs map file: original-vogel-symbol.map
><clipclip>
>
>WHAT in the compilation system says that these are to be loaded? Since I
>turned on (i.e. uncommented) the /autoloadmapfilestrue setting in my
>cont-sys.tex to make the fonts work, it seems that the three above
>mentioned map files are loaded twice, first here in the very beginning and
>then somewhere a bit later, so I get 
>all 
>theseannoyingwarningsaboutWarningpdfetex.zl9filecTeXLivetexmfpdftexconfigcontextpl0-ams-cmr.mapentryfor`pltt9'alreadyexists,duplicatesignoredWhilethisislessofaproblemthannothavingthefontsatall,I'dliketogetridofit,if 
>possible...

i cannot peek into your system -)

you can of course turn off map loading and do it manually in the pdftex.cfg 
file (here i don't load anything in pdftex.cfg)

it's on thanh's todo list to let map files be loaded after the first page 
as well as let map file entries be overloaded (which would remove the 
warnings)

Hans


-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
  2003-02-07  9:28           ` Hans Hagen
@ 2003-02-07 15:18             ` Bruce D'Arcus
  0 siblings, 0 replies; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-07 15:18 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 380 bytes --]

On Fri, 07 Feb 2003 10:28:08 +0100, "Hans Hagen" <pragma@wxs.nl> said:

> i think that the first typescript should be minionpro-osf
> 
> I'll send you a version of type-ini with tracing (\tracetypescriptstrue) 
> (no fun on your slow terminal)

I've attached the log file.  Nothing seems wrong to me...

Bruce

-- 
http://fastmail.fm - Choose from over 50 domains or use your own

[-- Attachment #2: cMP.log.tar.gz --]
[-- Type: application/x-gzip, Size: 5781 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
       [not found]                     ` <20030207145950.7CEAE45212@server2.fastmail.fm>
@ 2003-02-08 16:22                       ` Hans Hagen
       [not found]                         ` <5.1.0.14.1.20030207091156.0307f438@server-1>
  0 siblings, 1 reply; 33+ messages in thread
From: Hans Hagen @ 2003-02-08 16:22 UTC (permalink / raw)
  Cc: ntg-context

At 06:59 AM 2/7/2003 -0800, you wrote:
>On Fri, 07 Feb 2003 09:13:03 +0100, "Hans Hagen" <pragma@wxs.nl> said:
>
> >
> > this means that it cannot find it on th elocal path but the file is found
> > elsewhere (there are some 5 strategies for locating files in context)
> >
> > can you send me the file + test file?
>
>Which "file"?  I'll assume the typescriptfile, etc...

your problem is related to a naming inconsistency:

you map serif's in a typescript called

   [minionpro]

but in defining the typeface use:

   [minionpro-osf]

so, either name the typescript -pro as well, or call it up using:

   [minionpro,minionpro-osf]

Seems that halefway defining you lost the -osf -)

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: typescripts again (was to keep you busy ...)
       [not found]                     ` <20030208192136.06028471E1@server2.fastmail.fm>
@ 2003-02-08 19:38                       ` Hans Hagen
  2003-02-09 15:47                         ` memory problems Bruce D'Arcus
  0 siblings, 1 reply; 33+ messages in thread
From: Hans Hagen @ 2003-02-08 19:38 UTC (permalink / raw)
  Cc: ntg-context

At 11:21 AM 2/8/2003 -0800, Bruce D'Arcus wrote:
>On Sat, 08 Feb 2003 17:22:03 +0100, "Hans Hagen" <pragma@wxs.nl> said:
> > At 06:59 AM 2/7/2003 -0800, you wrote:
> > >On Fri, 07 Feb 2003 09:13:03 +0100, "Hans Hagen" <pragma@wxs.nl> said:
> > >
> > > >
> > > > this means that it cannot find it on th elocal path but the file is 
> found
> > > > elsewhere (there are some 5 strategies for locating files in context)
> > > >
> > > > can you send me the file + test file?
> > >
> > >Which "file"?  I'll assume the typescriptfile, etc...
> >
> > your problem is related to a naming inconsistency:
> >
> > you map serif's in a typescript called
> >
> >    [minionpro]
> >
> > but in defining the typeface use:
> >
> >    [minionpro-osf]
> >
> > so, either name the typescript -pro as well, or call it up using:
> >
> >    [minionpro,minionpro-osf]
> >
> > Seems that halefway defining you lost the -osf -)
>
>Well, this is just the start of the typescript.  What I want in the end
>is to have typescripts to call four different fonts: Minion, Minion-SC,
>Minion-OSF, and Minion-SCOSF.  So how do I deal with *that*?  As you can
>see, I don't quite understand some piece of this puzzle, though I'm not
>really sure which!

in that case, say things like

   [minionpro,minionpro-osf]

and another typeface

   [minionpro,minionpro-whow]

>Also, I just changed the name of the first typescript to add the -osf,
>ran the file, adn got this error:
>
>! Font \*maintext5ptrmbs*:=MinionPro-BoldIt-OSF-8y at 5.0pt not loaded:
>Not eno

this can be solved by enlarging the mem settings in texmf.cnf and 
regenerating the format

Hans

-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

* memory problems
  2003-02-08 19:38                       ` Hans Hagen
@ 2003-02-09 15:47                         ` Bruce D'Arcus
  2003-02-09 18:26                           ` Hans Hagen
  0 siblings, 1 reply; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-09 15:47 UTC (permalink / raw)



On Saturday, February 8, 2003, at 02:38  PM, Hans Hagen wrote:
>> Also, I just changed the name of the first typescript to add the -osf,
>> ran the file, and got this error:
>>
>> ! Font \*maintext5ptrmbs*:=MinionPro-BoldIt-OSF-8y at 5.0pt not 
>> loaded:
>> Not enough room left.
>
> this can be solved by enlarging the mem settings in texmf.cnf and 
> regenerating the format

With Hans' help, am making progress on the typescript, but am now 
getting a memory error.  Regarding suggestion to change the settings in 
texmf.cnf, here is what I currently have:

% Max number of characters in all strings, including all error messages,
% help texts, font names, control sequences.  These values apply to TeX 
and MP.
pool_size.context = 750000
pool_size = 500000		
% Minimum pool space after TeX/MP's own strings; must be at least
% 25000 less than pool_size, but doesn't need to be nearly that large.
string_vacancies.context = 45000
string_vacancies = 25000
% Maximum number of strings.
max_strings.context = 55000
max_strings = 35000
% min pool space left after loading .fmt
pool_free.context = 47500
pool_free = 25000

What should I change, and to what recommended value?

Bruce

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: memory problems
  2003-02-09 15:47                         ` memory problems Bruce D'Arcus
@ 2003-02-09 18:26                           ` Hans Hagen
  2003-02-09 19:45                             ` finally! (memory problems) Bruce D'Arcus
  0 siblings, 1 reply; 33+ messages in thread
From: Hans Hagen @ 2003-02-09 18:26 UTC (permalink / raw)


At 10:47 AM 2/9/2003 -0500, Bruce D'Arcus wrote:

>On Saturday, February 8, 2003, at 02:38  PM, Hans Hagen wrote:
>>>Also, I just changed the name of the first typescript to add the -osf,
>>>ran the file, and got this error:
>>>
>>>! Font \*maintext5ptrmbs*:=MinionPro-BoldIt-OSF-8y at 5.0pt not loaded:
>>>Not enough room left.
>>
>>this can be solved by enlarging the mem settings in texmf.cnf and 
>>regenerating the format
>
>With Hans' help, am making progress on the typescript, but am now getting 
>a memory error.  Regarding suggestion to change the settings in texmf.cnf, 
>here is what I currently have:

the tex live values are normally ok, here i have:

>% Max number of characters in all strings, including all error messages,
>% help texts, font names, control sequences.  These values apply to TeX 
>and MP.
>pool_size.context = 750000
>pool_size = 500000
>% Minimum pool space after TeX/MP's own strings; must be at least
>% 25000 less than pool_size, but doesn't need to be nearly that large.
>string_vacancies.context = 45000
>string_vacancies = 25000
>% Maximum number of strings.
>max_strings.context = 55000
>max_strings = 35000
>% min pool space left after loading .fmt
>pool_free.context = 47500
>pool_free = 25000

buf_size.context         =  200000 % needed for omega bug
extra_mem_bot.context    = 2000000
extra_mem_top.context    = 2000000
font_max.context         =    2000
font_mem_size.context    = 1000000
hash_extra.context       =   50000
main_memory.context      = 1500000
max_strings.context      =  100000
nest_size.context        =     500
obj_tab_size.context     =  300000
dest_names_size          =  300000
param_size.context       =    5000
pool_free.context        =   47500
pool_size.context        = 1250000
save_size.context        =   50000
stack_size.context       =    5000
string_vacancies.context =   90000

main_memory.mpost        = 2000000
pool_size.mpost          =  200000
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

* finally! (memory problems)
  2003-02-09 18:26                           ` Hans Hagen
@ 2003-02-09 19:45                             ` Bruce D'Arcus
  2003-02-09 20:05                               ` Sectionseparator? Roef Ragas
  2003-02-09 22:06                               ` finally! (memory problems) Hans Hagen
  0 siblings, 2 replies; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-09 19:45 UTC (permalink / raw)



Thanks for the help with this font stuff people!  It now works.  Beyond 
needing to change the memory settings, I was incorrectly specifying the 
osf font.  This works though:

\usetypescriptfile[type-otp.tex]

\definetypeface [maintext] [rm] [serif] 
[minionpro,minionpro-osf][default] [encoding=texnansi]
\definetypeface [maintext] [ss] [sans] [gillsans] [default] 
[encoding=texnansi]

\setupbodyfont[maintext,rm,10pt]

Now, to go back to the auto-size-switching thing, here's a variation on 
the suggestion by Hans:

\definefontsynonym
   [AutoSerif]
   [\fontrange
      {MinionPro-Capt    <10pt
       MinionPro-Regular <12pt
       MinionPro-Subh    <15pt
       MinionPro-Display ??? }]

(am not sure how to specify the last)

So exactly where do I put this in the typescriptfile, and how do I 
integrate it?  What I want to do is to be able to put, for example, 
MinionPro-BoldCapt-OSF-8y, into the "minionpro,minionpro-osf" 
typescript below, and each respective optical font into its respective 
typescript.  I'm not really understanding the logic of how this would 
work.

\starttypescript [serif] [minionpro] [name]

   \definefontsynonym [Serif]               [MinionPro-Regular]
   \definefontsynonym [SerifCaps]           [MinionPro-Caps]
   \definefontsynonym [SerifSlanted]        [MinionPro-RegularItalic]
   \definefontsynonym [SerifItalic]         [MinionPro-RegularItalic]
   \definefontsynonym [SerifBold]           [MinionPro-Bold]
   \definefontsynonym [SerifBoldSlanted]    [MinionPro-BoldItalic]
   \definefontsynonym [SerifBoldItalic]     [MinionPro-BoldItalic]

\stoptypescript

\starttypescript [serif] [minionpro,minionpro-osf] [texnansi]

   \definefontsynonym[MinionPro-Bold]        [MinionPro-Bold-OSF-8y] 
[encoding=texnansi]
   \definefontsynonym[MinionPro-BoldItalic] 
[MinionPro-BoldIt-OSF-8y][encoding=texnansi]
   \definefontsynonym[MinionPro-BoldSlanted] 
[MinionPro-BoldIt-OSF-8y][encoding=texnansi]
   \definefontsynonym[MinionPro-Caps]      [MinionPro-Regular-OSFSC-8y] 
[encoding=texnansi]
   \definefontsynonym[MinionPro-BoldCaps]      [MinionPro-Bold-OSFSC-8y] 
[encoding=texnansi]
   \definefontsynonym[MinionPro-Regular]        
[MinionPro-Regular-OSF-8y] [encoding=texnansi]
   \definefontsynonym[MinionPro-RegularItalic] 
[MinionPro-It-OSF-8y][encoding=texnansi]
   \definefontsynonym[MinionPro-RegularSlanted] 
[MinionPro-It-OSF-8y][encoding=texnansi]

\stoptypescript

Bruce

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Sectionseparator?
  2003-02-09 19:45                             ` finally! (memory problems) Bruce D'Arcus
@ 2003-02-09 20:05                               ` Roef Ragas
  2003-02-09 20:37                                 ` Sectionseparator? Hans Hagen
  2003-02-09 22:06                               ` finally! (memory problems) Hans Hagen
  1 sibling, 1 reply; 33+ messages in thread
From: Roef Ragas @ 2003-02-09 20:05 UTC (permalink / raw)


Goodevening all,

Suddenly this turns up, texexec-ing files that did ok until now, 
and when I continue I get a row of several : on top.
The strange thing is: there is no : in line 4
Does anybody now the answer to this little enigma?


?
) (./Factuur1.tuo
! Undefined control sequence.
l.4 \thisissectionseparator
                           {:}

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: Sectionseparator?
  2003-02-09 20:05                               ` Sectionseparator? Roef Ragas
@ 2003-02-09 20:37                                 ` Hans Hagen
  2003-02-10  8:07                                   ` Sectionseparator? Roef Ragas
  0 siblings, 1 reply; 33+ messages in thread
From: Hans Hagen @ 2003-02-09 20:37 UTC (permalink / raw)


At 09:05 PM 2/9/2003 +0100, you wrote:
>Goodevening all,
>
>Suddenly this turns up, texexec-ing files that did ok until now,
>and when I continue I get a row of several : on top.
>The strange thing is: there is no : in line 4
>Does anybody now the answer to this little enigma?
>
>
>?
>) (./Factuur1.tuo
>! Undefined control sequence.
>l.4 \thisissectionseparator

looks like an old context running a newer tuo file; this directive was 
added when french active :'s were added (and as a result dynamic separators)

so

(1) check what context you run (maybe no new dutch/english format generated)
(2) remove the tuo

Hans


-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: finally! (memory problems)
  2003-02-09 19:45                             ` finally! (memory problems) Bruce D'Arcus
  2003-02-09 20:05                               ` Sectionseparator? Roef Ragas
@ 2003-02-09 22:06                               ` Hans Hagen
  2003-02-09 23:09                                 ` Bruce D'Arcus
  1 sibling, 1 reply; 33+ messages in thread
From: Hans Hagen @ 2003-02-09 22:06 UTC (permalink / raw)
  Cc: ntg-context

At 02:45 PM 2/9/2003 -0500, Bruce D'Arcus wrote:

>Thanks for the help with this font stuff people!  It now works.  Beyond 
>needing to change the memory settings, I was incorrectly specifying the 
>osf font.  This works though:
>
>\usetypescriptfile[type-otp.tex]
>
>\definetypeface [maintext] [rm] [serif] [minionpro,minionpro-osf][default] 
>[encoding=texnansi]
>\definetypeface [maintext] [ss] [sans] [gillsans] [default] 
>[encoding=texnansi]
>
>\setupbodyfont[maintext,rm,10pt]
>
>Now, to go back to the auto-size-switching thing, here's a variation on 
>the suggestion by Hans:
>
>\definefontsynonym
>   [AutoSerif]
>   [\fontrange
>      {MinionPro-Capt    <10pt
>       MinionPro-Regular <12pt
>       MinionPro-Subh    <15pt
>       MinionPro-Display ??? }]
>
>(am not sure how to specify the last)

no specification, just a name, it's the auto-fall back

>So exactly where do I put this in the typescriptfile, and how do I 
>integrate it?  What I want to do is to be able to put, for example, 
>MinionPro-BoldCapt-OSF-8y, into the "minionpro,minionpro-osf" typescript 
>below, and each respective optical font into its respective 
>typescript.  I'm not really understanding the logic of how this would work.
>
>\starttypescript [serif] [minionpro] [name]
>
>   \definefontsynonym [Serif]               [MinionPro-Regular]
>   \definefontsynonym [SerifCaps]           [MinionPro-Caps]
>   \definefontsynonym [SerifSlanted]        [MinionPro-RegularItalic]
>   \definefontsynonym [SerifItalic]         [MinionPro-RegularItalic]
>   \definefontsynonym [SerifBold]           [MinionPro-Bold]
>   \definefontsynonym [SerifBoldSlanted]    [MinionPro-BoldItalic]
>   \definefontsynonym [SerifBoldItalic]     [MinionPro-BoldItalic]
>
>\stoptypescript

something

\starttypescript [serif] [minionpro-auto] [name]

   \definefontsynonym [Serif] [\fontrange{.....}]
    ....

\stoptypescript

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: finally! (memory problems)
  2003-02-09 22:06                               ` finally! (memory problems) Hans Hagen
@ 2003-02-09 23:09                                 ` Bruce D'Arcus
  2003-02-10  9:28                                   ` Hans Hagen
  0 siblings, 1 reply; 33+ messages in thread
From: Bruce D'Arcus @ 2003-02-09 23:09 UTC (permalink / raw)



On Sunday, February 9, 2003, at 05:06  PM, Hans Hagen wrote:

>> Now, to go back to the auto-size-switching thing, here's a variation 
>> on the suggestion by Hans:
>>
>> \definefontsynonym
>>   [AutoSerif]
>>   [\fontrange
>>      {MinionPro-Capt    <10pt
>>       MinionPro-Regular <12pt
>>       MinionPro-Subh    <15pt
>>       MinionPro-Display ??? }]
>>
>> (am not sure how to specify the last)
>
> no specification, just a name, it's the auto-fall back

But something like "<10pt" is saying, "if font size is less than 10pt, 
use MinionPro-Capt"; right?  So how do I deal with the Display size, 
which is for fonts greater than or equal to 15pt?

>> So exactly where do I put this in the typescriptfile, and how do I 
>> integrate it?  What I want to do is to be able to put, for example, 
>> MinionPro-BoldCapt-OSF-8y, into the "minionpro,minionpro-osf" 
>> typescript below, and each respective optical font into its 
>> respective typescript.  I'm not really understanding the logic of how 
>> this would work.
>
> something
>
> \starttypescript [serif] [minionpro-auto] [name]
>
>   \definefontsynonym [Serif] [\fontrange{.....}]
>    ....
>
> \stoptypescript

So in the example above, does that mean I need to have four separate 
lines for "Serif"?  Or to put differently, what is the {.....} in the 
[\fontrange{.....}] thing above?

\starttypescript [serif] [minionpro-auto] [name]
	\definefontsynonym [Serif] [\fontrange{MinionPro-Capt}]
	\definefontsynonym [Serif] [\fontrange{MinionPro-Regular}]
	\definefontsynonym [Serif] [\fontrange{MinionPro-Subh}]
	\definefontsynonym [Serif] [\fontrange{MinionPro-Display}]
	etc., etc.
\stoptypescript

And then in each other variant I specify (like "minionpro-osf"), I need?

\starttypescript [serif] [minionpro-auto,minionpro-auto-osf] [name]
	\definefontsynonym [\fontrange{MinionPro-Capt}] [MinionPro-Capt-OSF-8y]
	\definefontsynonym [\fontrange{MinionPro-Regular}] 
[MinionPro-Regular-OSF-8y]
	\definefontsynonym [\fontrange{MinionPro-Subh}] [MinionPro-Subh-OSF-8y]
	\definefontsynonym [\fontrange{MinionPro-Display}] 
[MinionPro-Display-OSF-8y]
	etc., etc.
\stoptypescript

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: Sectionseparator?
  2003-02-09 20:37                                 ` Sectionseparator? Hans Hagen
@ 2003-02-10  8:07                                   ` Roef Ragas
  0 siblings, 0 replies; 33+ messages in thread
From: Roef Ragas @ 2003-02-10  8:07 UTC (permalink / raw)


Op zo 09-02-2003, om 21:37 schreef Hans Hagen:
> At 09:05 PM 2/9/2003 +0100, you wrote:
> >Goodevening all,
> >
> >Suddenly this turns up, texexec-ing files that did ok until now,
> >and when I continue I get a row of several : on top.
> >The strange thing is: there is no : in line 4
> >Does anybody now the answer to this little enigma?
> >
> >
> >?
> >) (./Factuur1.tuo
> >! Undefined control sequence.
> >l.4 \thisissectionseparator
> 
> looks like an old context running a newer tuo file; 


This indeed was the answer, thanks again


> this directive was 
> added when french active :'s were added (and as a result dynamic separators)
> 
> so
> 
> (1) check what context you run (maybe no new dutch/english format generated)
> (2) remove the tuo
> 
> Hans
> 
> 
> -------------------------------------------------------------------------
>                                    Hans Hagen | PRAGMA ADE | pragma@wxs.nl
>                        Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>   tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
> -------------------------------------------------------------------------
>                         information: http://www.pragma-ade.com/roadmap.pdf
>                      documentation: http://www.pragma-ade.com/showcase.pdf
> -------------------------------------------------------------------------
> 
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context
> 

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: finally! (memory problems)
  2003-02-09 23:09                                 ` Bruce D'Arcus
@ 2003-02-10  9:28                                   ` Hans Hagen
  0 siblings, 0 replies; 33+ messages in thread
From: Hans Hagen @ 2003-02-10  9:28 UTC (permalink / raw)


At 06:09 PM 2/9/2003 -0500, Bruce D'Arcus wrote:

>On Sunday, February 9, 2003, at 05:06  PM, Hans Hagen wrote:
>
>>>Now, to go back to the auto-size-switching thing, here's a variation on 
>>>the suggestion by Hans:
>>>
>>>\definefontsynonym
>>>   [AutoSerif]
>>>   [\fontrange
>>>      {MinionPro-Capt    <10pt
>>>       MinionPro-Regular <12pt
>>>       MinionPro-Subh    <15pt
>>>       MinionPro-Display ??? }]
>>>
>>>(am not sure how to specify the last)
>>
>>no specification, just a name, it's the auto-fall back
>
>But something like "<10pt" is saying, "if font size is less than 10pt, use 
>MinionPro-Capt"; right?  So how do I deal with the Display size, which is 
>for fonts greater than or equal to 15pt?

that will happen because that is the default (i.e. when no match is found)

Hans

-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2003-02-10  9:28 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <5.1.0.14.1.20030204001753.0345b738@server-1>
2003-02-04  0:28 ` to keep you busy Bruce D'Arcus
2003-02-04 12:35   ` Hans Hagen
2003-02-04 15:08     ` Bruce D'Arcus
2003-02-05  9:26       ` Hans Hagen
2003-02-05 18:12         ` typescripts again (was to keep you busy ...) Bruce D'Arcus
2003-02-05 21:00           ` Jens-Uwe Morawski
2003-02-05 21:13             ` Bruce D'Arcus
2003-02-06  1:55               ` Jens-Uwe Morawski
2003-02-06  2:40                 ` Bruce D'Arcus
2003-02-06 12:58                   ` Jens-Uwe Morawski
2003-02-06 14:53                     ` Bruce D'Arcus
2003-02-06 14:58                       ` Taco Hoekwater
2003-02-06 15:12                         ` Bruce D'Arcus
2003-02-06 16:47                       ` Hans Hagen
2003-02-06 16:53                       ` Jens-Uwe Morawski
2003-02-06 17:25                         ` Bruce D'Arcus
2003-02-06 21:03                           ` Jens-Uwe Morawski
     [not found]                     ` <20030207145950.7CEAE45212@server2.fastmail.fm>
2003-02-08 16:22                       ` Hans Hagen
     [not found]                         ` <5.1.0.14.1.20030207091156.0307f438@server-1>
     [not found]                     ` <20030208192136.06028471E1@server2.fastmail.fm>
2003-02-08 19:38                       ` Hans Hagen
2003-02-09 15:47                         ` memory problems Bruce D'Arcus
2003-02-09 18:26                           ` Hans Hagen
2003-02-09 19:45                             ` finally! (memory problems) Bruce D'Arcus
2003-02-09 20:05                               ` Sectionseparator? Roef Ragas
2003-02-09 20:37                                 ` Sectionseparator? Hans Hagen
2003-02-10  8:07                                   ` Sectionseparator? Roef Ragas
2003-02-09 22:06                               ` finally! (memory problems) Hans Hagen
2003-02-09 23:09                                 ` Bruce D'Arcus
2003-02-10  9:28                                   ` Hans Hagen
2003-02-07 11:46                   ` typescripts again (was to keep you busy ...) mari.voipio
2003-02-07 12:00                     ` Adam Lindsay
2003-02-07 14:13                     ` Hans Hagen
2003-02-07  9:28           ` Hans Hagen
2003-02-07 15:18             ` Bruce D'Arcus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).