ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Fonts switching and styles ..
@ 2004-11-21 15:49 Dirar BOUGATEF
  2004-11-21 23:19 ` h h extern
  2004-11-22 19:15 ` Problem with index generation Matthias Weber
  0 siblings, 2 replies; 15+ messages in thread
From: Dirar BOUGATEF @ 2004-11-21 15:49 UTC (permalink / raw)


Hi all,

I am working to setup styles in heads with the typeface karat, that i define 
as follows:

\starttypescript [karat]
  \definetypeface [karat] [ss] [sans] [karat] [default] [encoding=texnansi]
\stoptypescript

Here is my head definition:

\setuphead[part]
		  [align=left,
		   page=right,
		   placehead=yes,
		   style=???????,
		   before={\hbox{}\vfill},
		   after={\vfill},
		   command=\MyPart]

Question: what command should i use to define this head to use the karat 
typeface above as its style ?

Thanks for any help.

Dirar.

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

* Re: Fonts switching and styles ..
  2004-11-21 15:49 Fonts switching and styles Dirar BOUGATEF
@ 2004-11-21 23:19 ` h h extern
  2004-11-22 12:34   ` Dirar BOUGATEF
  2004-11-22 19:15 ` Problem with index generation Matthias Weber
  1 sibling, 1 reply; 15+ messages in thread
From: h h extern @ 2004-11-21 23:19 UTC (permalink / raw)


Dirar BOUGATEF wrote:
> Hi all,
> 
> I am working to setup styles in heads with the typeface karat, that i 
> define as follows:
> 
> \starttypescript [karat]
>  \definetypeface [karat] [ss] [sans] [karat] [default] [encoding=texnansi]
> \stoptypescript
> 
> Here is my head definition:
> 
> \setuphead[part]
>           [align=left,
>            page=right,
>            placehead=yes,
>            style=???????,
>            before={\hbox{}\vfill},
>            after={\vfill},
>            command=\MyPart]
> 
> Question: what command should i use to define this head to use the karat 
> typeface above as its style ?

...,style={\switchtobodyfont[karat]\bfc},...

or, when no math is used,

\setupbodyfont[karat]

\definefont[MyPartFont][SansBold at 24pt]
\setuphead[part][style=\MyPartFont]

you could also add more faces to:

\starttypescript [karat]
  \definetypeface [gold]  [rm] [serif][gold]  [default] [encoding=texnansi]
  \definetypeface [karat] [ss] [sans] [karat] [default] [encoding=texnansi]
\stoptypescript

and then (say that the body font is rm (gold)), do

\setuphead[part][style=\ss\bfd]

etc etc

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

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

* Re: Fonts switching and styles ..
  2004-11-21 23:19 ` h h extern
@ 2004-11-22 12:34   ` Dirar BOUGATEF
  2004-11-22 13:26     ` Hans Hagen
  0 siblings, 1 reply; 15+ messages in thread
From: Dirar BOUGATEF @ 2004-11-22 12:34 UTC (permalink / raw)


I have tried style={\switchtobodyfont[karat]} and it works. Now how to 
switch to a different size without going through:

\setupbodyfont[karat]
\definefont[MyPartFont][SansBold at 24pt]
\setuphead[part][style=\MyPartFont]

The problem i see here is that i have to go through \setupbodyfont[karat] 
and that i can't say something like:

\definefont[MyPartFont][karat at 24pt]

Lets say i have 5 fonts in my document i only want to say 
\setupbodyfont[MyMainFont] once, then i should have other mecanisms for 
switching properly to other fonts at different sizes.
Why does \definefont maps only from Sans, Serif, SansBold etc. ? This is 
quit fastidious, cause for this to work we have to use \setupbodyfont first 
and follow the steps above.

I may be missing something out there ..

Many thanks.

Dirar.

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

* Re: Fonts switching and styles ..
  2004-11-22 12:34   ` Dirar BOUGATEF
@ 2004-11-22 13:26     ` Hans Hagen
  2004-11-22 14:47       ` Dirar BOUGATEF
  0 siblings, 1 reply; 15+ messages in thread
From: Hans Hagen @ 2004-11-22 13:26 UTC (permalink / raw)


Dirar BOUGATEF wrote:

> I have tried style={\switchtobodyfont[karat]} and it works. Now how to 
> switch to a different size without going through:

you can do things like:

\usetypescript [sans][karat][map,name]

to load the appropriate defs

> \definefont[MyPartFont][SansBold at 24pt]
> \setuphead[part][style=\MyPartFont]
> 
> The problem i see here is that i have to go through 
> \setupbodyfont[karat] and that i can't say something like:
> 
> \definefont[MyPartFont][karat at 24pt]

actually you can, goven that karat is known

Serif SerifBold Sans SansItalic
Karat KaratBold (or maybe Karat-Bold) texnansi-karat

are all valid in a \definefont

> Lets say i have 5 fonts in my document i only want to say 
> \setupbodyfont[MyMainFont] once, then i should have other mecanisms for 
> switching properly to other fonts at different sizes.
> Why does \definefont maps only from Sans, Serif, SansBold etc. ? This is 
> quit fastidious, cause for this to work we have to use \setupbodyfont 
> first and follow the steps above.
> 
> I may be missing something out there ..

i think so -)

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

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

* Re: Fonts switching and styles ..
  2004-11-22 13:26     ` Hans Hagen
@ 2004-11-22 14:47       ` Dirar BOUGATEF
  2004-11-22 19:42         ` Willi Egger
  0 siblings, 1 reply; 15+ messages in thread
From: Dirar BOUGATEF @ 2004-11-22 14:47 UTC (permalink / raw)


i have tried this, and leads to:

bodyfont       : unknown variant MyFont

\usetypescriptfile[karat-type]
\usetypescript[karat]

\usetypescriptfile[opulent-type]
\usetypescript[opulent]

\usetypescript [sans][karat][map,name]
\definefont[MyFont][karat]

\starttext
\switchtobodyfont[karat]
Madame, Monsieur

\switchtobodyfont[opulent]
Madame, Monsieur

\switchtobodyfont[MyFont]
Madame, Monsieur
\stoptext

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

* Problem with index generation
  2004-11-21 15:49 Fonts switching and styles Dirar BOUGATEF
  2004-11-21 23:19 ` h h extern
@ 2004-11-22 19:15 ` Matthias Weber
  2004-11-22 22:15   ` Hans Hagen
  1 sibling, 1 reply; 15+ messages in thread
From: Matthias Weber @ 2004-11-22 19:15 UTC (permalink / raw)


Hello all,

'upgrading' to the 2004 TeXLive distribution (via GW's  i-Installer)  
broke the following (which is
a distilled version of a much larger file)

\startproject test
\startbodymatter

\section{Why is $1+1=2$?}

Let us first discuss {\em addition\index{addition}}.

\stopbodymatter

\startbackmatter
\completeindex

\stopbackmatter
\stopproject

Commenting out \completeindex makes the file TeXable, but, of course,  
without index.
It don't get an error message but TeXshop 'stalls' with the following  
log:


  TeXExec 5.0 - ConTeXt / PRAGMA ADE 1997-2004

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

This is pdfeTeX, Version 3.141592-1.20a-2.2 (Web2C 7.5.3)
  (/usr/local/teTeX/share/texmf.local/web2c/natural.tcx)
output format initialized to DVI
entering extended mode
(./test.tex

ConTeXt  ver: 2004.10.28  fmt: 2004.11.22  int: english  mes: english

language       : language en is active
<protectionstate 0>
system         : cont-new loaded
(/usr/local/teTeX/share/texmf.local/tex/context/base/cont-new.tex
systems        : beware: some patches loaded from cont-new.tex!
color          : palette rollover is available
system (E-TEX) : [line 1021]
system (E-TEX) : [line 1076]
)
system         : cont-old loaded
(/usr/local/teTeX/share/texmf.local/tex/context/base/cont-old.tex
loading        : Context Old Macros
)
system         : cont-fil loaded
(/usr/local/teTeX/share/texmf.local/tex/context/base/cont-fil.tex
loading        : Context File Synonyms
)
system         : cont-sys.rme loaded
(/usr/local/teTeX/share/texmf.local/tex/context/user/cont-sys.rme
fonts          : [berry] [ec] []
(/usr/local/teTeX/share/texmf.local/tex/context/base/type-syn.tex)
(/usr/local/teTeX/share/texmf.local/tex/context/base/type-enc.tex)
(/usr/local/teTeX/share/texmf.local/tex/context/base/type-siz.tex)
(/usr/local/teTeX/share/texmf.local/tex/context/base/type-map.tex)
(/usr/local/teTeX/share/texmf.local/tex/context/base/type-spe.tex)
(/usr/local/teTeX/share/texmf.local/tex/context/base/type-exa.tex)
(/usr/local/teTeX/share/texmf.local/tex/context/base/type-akb.tex))
bodyfont       : 12pt rm is loaded
language       : patterns en->default:default->1->2:2  
uk->default:default->2->2
:2 de->texnansi:texnansi->3->2:2 de->ec:ec->4->2:2  
fr->texnansi:texnansi->5->2:
2 fr->ec:ec->6->2:2 es->default:default->7->2:2  
it->texnansi:texnansi->8->2:2 i
t->ec:ec->9->2:2 nl->texnansi:texnansi->10->2:2 nl->ec:ec->11->2:2  
loaded
specials       : tex,postscript,rokicki loaded
system         : test.top loaded
(./test.top
specials       : loading definition file tpd
(/usr/local/teTeX/share/texmf.local/tex/context/base/spec-tpd.tex
specials       : loading definition file fdf
(/usr/local/teTeX/share/texmf.local/tex/context/base/spec-fdf.tex
<unprotect 3> <unprotect 4>
system (E-TEX) : [line 2255] \ifcsname
<protect 4> <protect 3>)
specials       : fdf loaded
<unprotect 3> <protect 3>)
specials       : fdf,tpd loaded
) (./test.tuo) (./test.tuo) (./test.tuo) (./test.tuo) (./test.tuo)  
(./test.tuo)
  (./test.tuo) (./test.tuo) (./test.tuo) (./test.tuo) (./test.tuo)  
(./test.tuo)
(./test.tuo)
fonts          : using map file: texnansi-public-lm.map
fonts          : using map file: original-public-csr.map
fonts          : using map file: original-public-plr.map
fonts          : using map file: original-public-lm.map
fonts          : using map file: original-ams-euler.map
fonts          : using map file: original-ams-cmr.map
fonts          : using map file: texnansi-base.map
fonts          : using map file: qx-base.map
fonts          : using map file: 8r-base.map
fonts          : using map file: ec-base.map
fonts          : using map file: ec-public-lm.map
fonts          : using map file: original-base.map
systems        : begin file test at line 1
structure      : begin of sectionblock bodymatter
section        : 1 Why is $1+1=2$?
structure      : end of sectionblock bodymatter
[1.1{/usr/local/teTeX/share/texmf.local/fonts/map/pdftex/context/ 
original-empty
.map}{/usr/local/teTeX/share/texmf.local/fonts/map/pdftex/context/ 
texnansi-publ
ic-lm.map}{/usr/local/teTeX/share/texmf.local/fonts/map/pdftex/context/ 
original
-public-csr.map}{/usr/local/teTeX/share/texmf.local/fonts/map/pdftex/ 
context/or
iginal-public-plr.map}{/usr/local/teTeX/share/texmf.local/fonts/map/ 
pdftex/cont
ext/original-public-lm.map}{/usr/local/teTeX/share/texmf.local/fonts/ 
map/pdftex
/context/original-ams-euler.map}{/usr/local/teTeX/share/texmf.local/ 
fonts/map/p
dftex/context/original-ams-cmr.map}{/usr/local/teTeX/share/texmf.local/ 
fonts/ma
p/pdftex/context/texnansi-base.map}{/usr/local/teTeX/share/texmf.local/ 
fonts/ma
p/pdftex/context/qx-base.map}{/usr/local/teTeX/share/texmf.local/fonts/ 
map/pdft
ex/context/8r-base.map}{/usr/local/teTeX/share/texmf.local/fonts/map/ 
pdftex/con
text/ec-base.map}{/usr/local/teTeX/share/texmf.local/fonts/map/pdftex/ 
context/e
c-public-lm.map}{/usr/local/teTeX/share/texmf.local/fonts/map/pdftex/ 
context/or
iginal-base.map}]

Am I missing a ConText subtlety, or is my TeXtree broken?
Thanks for any help!

Matthias

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

* Re: Fonts switching and styles ..
  2004-11-22 14:47       ` Dirar BOUGATEF
@ 2004-11-22 19:42         ` Willi Egger
  2004-11-23  7:53           ` Dirar BOUGATEF
  0 siblings, 1 reply; 15+ messages in thread
From: Willi Egger @ 2004-11-22 19:42 UTC (permalink / raw)


Hi Dirar,

I is not enough to give the commands which typescripts/files to use, you 
must setup first a bodyfont and then switch to other fonts

Dirar BOUGATEF wrote:
> i have tried this, and leads to:
> 
> bodyfont       : unknown variant MyFont
> 
> \usetypescriptfile[karat-type]
> \usetypescript[karat]
> 
> \usetypescriptfile[opulent-type]
> \usetypescript[opulent]
> 
> \usetypescript [sans][karat][map,name]
> \definefont[MyFont][karat]
> 
\definetypeface [Dirar] [rm] [serif] [times] [default]
\definetypeface [Dirar] [ss] [sans] [helvetica] [default] [rscale=.9]
\definetypeface [Dirar] [tt] [mono] [courier] [default] [rscale=1.1]

\definetypeface [Other] [rm] [serif] [other-times] [default]
\definetypeface [Other] [ss] [sans] [other-helvetica] [default] [rscale=.9]
\definetypeface [Other] [tt] [mono] [other-courier] [default] [rscale=1.1]

\starttext
\switchtotypeface[Dirar][ss,12pt]
	MAdame, Monsieur

switchtotypeface[Other][rm,12pt]
	 Madame, Monsieur

\stoptext


I hope this will solve the question


Willi

> \starttext
> \switchtobodyfont[karat]
> Madame, Monsieur
> 
> \switchtobodyfont[opulent]
> Madame, Monsieur
> 
> \switchtobodyfont[MyFont]
> Madame, Monsieur
> \stoptext
> 
> 
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context

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

* Re: Problem with index generation
  2004-11-22 19:15 ` Problem with index generation Matthias Weber
@ 2004-11-22 22:15   ` Hans Hagen
  2004-11-23  2:22     ` How to patch ConText on the Mac for beginners (was: Problem with index generation) Matthias Weber
  0 siblings, 1 reply; 15+ messages in thread
From: Hans Hagen @ 2004-11-22 22:15 UTC (permalink / raw)


Matthias Weber wrote:
> Hello all,
> 
> 'upgrading' to the 2004 TeXLive distribution (via GW's  i-Installer)  
> broke the following (which is

you mean that it loops ...

\def\doplaceregister[#1][#2]%
   {\iffirstargument
      \begingroup
      \edef\currentregister{#1}%  <<<<<

\def\docompleteregister[#1][#2]%
   {\iffirstargument
      \begingroup
      \edef\currentregister{#1}%  <<<<<

change the def's into edef's in core-reg.tex and reformat

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

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

* Re: How to patch ConText on the Mac for beginners (was: Problem with index generation)
  2004-11-22 22:15   ` Hans Hagen
@ 2004-11-23  2:22     ` Matthias Weber
  2004-11-23  2:46       ` Index and publication list conflict Matthias Weber
  0 siblings, 1 reply; 15+ messages in thread
From: Matthias Weber @ 2004-11-23  2:22 UTC (permalink / raw)


Thanks, Hans, this works!

I have to admit reading Hans'  instruction "... and reformat"
gave me the shivers. Fortunately I found an almost terminal-free
way to do it on a Mac, I record it here for others who are faint of 
heart
like myself.

i) Locate the file you need to modify. This is easiest done by typing
locate filename
in a terminal window, and pasting the located directory path into the 
finder
menu box you get under Go...Go To Folder.
This only works if the locate database is up to date, it can be updated 
(for instance)
using MacJanitor which freely executes maintenance routines that never 
happen
on those Macs that are asleep at night.
ii) Open the located file with TeXShop (for instance), modify it at 
will, and save.
This might not work due to missing permissions. In this case, save to 
the desktop first and copy
into the located directory. You'll be asked for authentication.
iii) Start GW's i-Installer,  go to i-Package... open..., and select 
ConTeXt. Then, select configure
only (do not download!), and ignore the warning. i-Installer will then 
perform all the secret
things to reformat ConTeXt.

iv) If something went wrong, use the i-Installer to download and 
configure ConTeXt again.


Matthias








On Nov 22, 2004, at 5:15 PM, Hans Hagen wrote:

> Matthias Weber wrote:
>> Hello all,
>> 'upgrading' to the 2004 TeXLive distribution (via GW's  i-Installer)  
>> broke the following (which is
>
> you mean that it loops ...
>
> \def\doplaceregister[#1][#2]%
>   {\iffirstargument
>      \begingroup
>      \edef\currentregister{#1}%  <<<<<
>
> \def\docompleteregister[#1][#2]%
>   {\iffirstargument
>      \begingroup
>      \edef\currentregister{#1}%  <<<<<
>
> change the def's into edef's in core-reg.tex and reformat
>
> Hans
>
> -----------------------------------------------------------------
>                                           Hans Hagen | PRAGMA ADE
>               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
>                                              | www.pragma-pod.nl
> -----------------------------------------------------------------
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context
>
>

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

* Index and publication list conflict
  2004-11-23  2:22     ` How to patch ConText on the Mac for beginners (was: Problem with index generation) Matthias Weber
@ 2004-11-23  2:46       ` Matthias Weber
  2004-11-24 12:59         ` Taco Hoekwater
  0 siblings, 1 reply; 15+ messages in thread
From: Matthias Weber @ 2004-11-23  2:46 UTC (permalink / raw)


Hello all,

I might be the only one, but I wanted the index before the 
bibliography, so
my backmatter looks like:

\startbackmatter
\completeindex
\completepublications
\stopbackmatter

which results in the log (excerpt)

title          : - \headtext {pubs}
(./cxmf.tuo)
system         : pubs not found/processed

When I conform and use

\startbackmatter
\completepublications
\completeindex
\stopbackmatter

everything is fine, up to the order. ( TeXLive 2004 only)

Matthias

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

* Re: Fonts switching and styles ..
  2004-11-22 19:42         ` Willi Egger
@ 2004-11-23  7:53           ` Dirar BOUGATEF
  2004-11-23 10:32             ` Willi Egger
  2004-11-23 12:32             ` Christopher Creutzig
  0 siblings, 2 replies; 15+ messages in thread
From: Dirar BOUGATEF @ 2004-11-23  7:53 UTC (permalink / raw)


Hi Willy,

What i need is to have a synonym for the font Dirar you defined, how do i 
have to proceed? I have tried the following: (Am gonna use my fonts names as 
i started the subject with)

\starttypescript [karat]
  \definetypeface [karat] [ss] [sans] [karat] [default] [encoding=texnansi]
\stoptypescript

\usetypescriptfile[karat-type]
\usetypescript[karat]

\definebodyfont[MyFont][karat]

\starttext
\switchtobodyfont[MyFont]
\stoptext

This leads to the error:

bodyfont       : unknown variant MyFont

Do you see any problem here ?

Many thanks.

Dirar.

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

* Re: Fonts switching and styles ..
  2004-11-23  7:53           ` Dirar BOUGATEF
@ 2004-11-23 10:32             ` Willi Egger
  2004-11-23 12:32             ` Christopher Creutzig
  1 sibling, 0 replies; 15+ messages in thread
From: Willi Egger @ 2004-11-23 10:32 UTC (permalink / raw)


Hi Dirar,

What you have is apparently different already defined typefaces.
So use switchtoypeface to change from karat to opulent.
Then switchtobodyfont[karat,12pt] or whatever.

You can not use the command definebodyfont in the way you do. For 
details for this command please refer to the manual mfonts.pdf

Willi

Dirar BOUGATEF wrote:
> Hi Willy,
> 
> What i need is to have a synonym for the font Dirar you defined, how do 
> i have to proceed? I have tried the following: (Am gonna use my fonts 
> names as i started the subject with)
> 
> \starttypescript [karat]
>  \definetypeface [karat] [ss] [sans] [karat] [default] [encoding=texnansi]
> \stoptypescript
> 
> \usetypescriptfile[karat-type]
> \usetypescript[karat]
> 
> \definebodyfont[MyFont][karat]
> 
> \starttext
> \switchtobodyfont[MyFont]
> \stoptext
> 
> This leads to the error:
> 
> bodyfont       : unknown variant MyFont
> 
> Do you see any problem here ?
> 
> Many thanks.
> 
> Dirar.
> 
> 
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context

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

* Re: Fonts switching and styles ..
  2004-11-23  7:53           ` Dirar BOUGATEF
  2004-11-23 10:32             ` Willi Egger
@ 2004-11-23 12:32             ` Christopher Creutzig
  2004-11-23 14:10               ` Dirar BOUGATEF
  1 sibling, 1 reply; 15+ messages in thread
From: Christopher Creutzig @ 2004-11-23 12:32 UTC (permalink / raw)


Dirar BOUGATEF wrote:

> \definebodyfont[MyFont][karat]
> 
> \starttext
> \switchtobodyfont[MyFont]
> \stoptext

  I believe \definebodyfont[MyFont][karat] should be 
\definefontsynonym[MyFont][karat], which should allow 
\switchtobodyfont[MyFont], but you may also be looking for 
\definefont[MyFont][karat], which defines \MyFont.

regards,
	Christopher

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

* Re: Fonts switching and styles ..
  2004-11-23 12:32             ` Christopher Creutzig
@ 2004-11-23 14:10               ` Dirar BOUGATEF
  0 siblings, 0 replies; 15+ messages in thread
From: Dirar BOUGATEF @ 2004-11-23 14:10 UTC (permalink / raw)


Thanks Christopher, i have tried what you asked me but this didn't solve the 
problem. To me it was the right thing to do, but it looks like it is because 
my font is defined as a typeface collection that it does not work.

I have tried \switchtotypeface instead as Willie said and this works fine.

Now, i don't know where you got this command from, Willie (Thanks by the way 
:) ), cause it is nowhere in mfonts.pdf nor in cont-eni.pdf.

Am really confused about the proper way to configure my fonts and use them, 
i know some trickeries but am not sure about the right way to do things.

Question:

>From mfonts.pdf, it looks like there are 2 ways of configuring fonts after 
they are installed (page 9).

1. As a whole.
2. As a typeface collection.

In my understanding, when a font is defined as a whole, you can use the 
following commands to play with your font:

1. \setupbodyfont
2. \definebodyfont

3. \setupfontsynonym
4. \definefontsynonym

5. \switchtobodyfont


When it is defined as a collection of typefaces you have to use:

1. \definetypeface
2. \switchtotypeface

Now, when to use each one is a mystery.

Could anyone explain a bit more ?

Thanks.

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

* Re: Index and publication list conflict
  2004-11-23  2:46       ` Index and publication list conflict Matthias Weber
@ 2004-11-24 12:59         ` Taco Hoekwater
  0 siblings, 0 replies; 15+ messages in thread
From: Taco Hoekwater @ 2004-11-24 12:59 UTC (permalink / raw)



 
> everything is fine, up to the order. ( TeXLive 2004 only)

Weird, really weird. Have you tried the 

	\setuppublicationlist[criterium=all]

that seems to be needed these days?

Greetings, Taco

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

end of thread, other threads:[~2004-11-24 12:59 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-21 15:49 Fonts switching and styles Dirar BOUGATEF
2004-11-21 23:19 ` h h extern
2004-11-22 12:34   ` Dirar BOUGATEF
2004-11-22 13:26     ` Hans Hagen
2004-11-22 14:47       ` Dirar BOUGATEF
2004-11-22 19:42         ` Willi Egger
2004-11-23  7:53           ` Dirar BOUGATEF
2004-11-23 10:32             ` Willi Egger
2004-11-23 12:32             ` Christopher Creutzig
2004-11-23 14:10               ` Dirar BOUGATEF
2004-11-22 19:15 ` Problem with index generation Matthias Weber
2004-11-22 22:15   ` Hans Hagen
2004-11-23  2:22     ` How to patch ConText on the Mac for beginners (was: Problem with index generation) Matthias Weber
2004-11-23  2:46       ` Index and publication list conflict Matthias Weber
2004-11-24 12:59         ` Taco Hoekwater

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