ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* font switching questions
@ 2009-03-17 21:48 Alan Stone
  2009-03-17 22:27 ` Hans Hagen
  0 siblings, 1 reply; 24+ messages in thread
From: Alan Stone @ 2009-03-17 21:48 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1069 bytes --]

Ahoi,

Following a previous discussion, I've been advised to "try to avoid
\switchtobodyfont and use \definedfont or \definefont instead".

(1) What's the difference between \definefont and \definedfont ?

(2) In the underneath example...

(2a) how to implement \define(d)font for font switching ?

(2b) how to define \myFontHook ?

Thanks,
Alan

\usemodule[t-lettrine]

\usetypescriptfile[tps_arial]
\usetypescript[arial]
\definetypeface[myFont][arial]

\usetypescriptfile[tps_timesnewroman]
\usetypescript[timesnewroman]
\definetypeface[myOtherFont][timesnewroman]

\def\myFontSize{12pt}
\def\myOtherFontSize{20pt}

\setupbodyfont[myFont,\myFontSize]

\setuphead[chapter][style={\switchtobodyfont[myOtherFont,\myOtherFontSize]}]

\starttext

\chapter{Chapter One}

%\lettrine[FontHook={\myFontHook}]{T}{hus}, I came to the conclusion that
the designer of a new
\lettrine{T}{hus}, I came to the conclusion that the designer of a new
system must not only be the implementer and first large-- scale user; the
designer should also write
the first user manual.

\stoptext

[-- Attachment #1.2: Type: text/html, Size: 1541 bytes --]

[-- Attachment #2: Type: text/plain, Size: 487 bytes --]

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

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

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

* Re: font switching questions
  2009-03-17 21:48 font switching questions Alan Stone
@ 2009-03-17 22:27 ` Hans Hagen
  2009-03-17 23:48   ` Wolfgang Schuster
  2009-03-18  8:12   ` Alan Stone
  0 siblings, 2 replies; 24+ messages in thread
From: Hans Hagen @ 2009-03-17 22:27 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Alan Stone wrote:
> Ahoi,
> 
> Following a previous discussion, I've been advised to "try to avoid
> \switchtobodyfont and use \definedfont or \definefont instead".

what is better depends on the situation

- for a structured document using \switchtobodyfont is ok

- for special layout elements (headers, title pages, keywords) 
\definefont might be handier (esp when funny sizes are used)

- when using \definefont it can be handy to use the symbolic names 
(Serif, SansBold etc) and sizes (sa 1.2) because that makes redefinition 
easier

> (1) What's the difference between \definefont and \definedfont ?

\definefont defines a macro that represents a font, and \definedfont 
just switches to a font (the forst one is more efficient when you switch 
often)

> (2) In the underneath example...
> 
> (2a) how to implement \define(d)font for font switching ?
> 
> (2b) how to define \myFontHook ?
> 
> Thanks,
> Alan
> 
> \usemodule[t-lettrine]
> 
> \usetypescriptfile[tps_arial]
> \usetypescript[arial]

... just look how gyre typefaces are defined

> \setupbodyfont[myFont,\myFontSize]

just \setupbodyfont[myFont,12pt]

and an occasional \definefont[BigFont][SerifBold sa 3.5] which gives you 
  \BigFont

> \setuphead[chapter][style={\switchtobodyfont[myOtherFont,\myOtherFontSize]}]

it depends on what can occur in a title, if there's math and monospaced 
and whatever being used mixed, then best use a typeface (apart from the 
one time definition it's quite fast to switch a typeface)



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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


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

* Re: font switching questions
  2009-03-17 22:27 ` Hans Hagen
@ 2009-03-17 23:48   ` Wolfgang Schuster
  2009-03-18  8:05     ` Hans Hagen
  2009-03-18  8:12   ` Alan Stone
  1 sibling, 1 reply; 24+ messages in thread
From: Wolfgang Schuster @ 2009-03-17 23:48 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Tue, Mar 17, 2009 at 11:27 PM, Hans Hagen <pragma@wxs.nl> wrote:

> - for a structured document using \switchtobodyfont is ok

What do you mean with structured document?

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

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


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

* Re: font switching questions
  2009-03-17 23:48   ` Wolfgang Schuster
@ 2009-03-18  8:05     ` Hans Hagen
  0 siblings, 0 replies; 24+ messages in thread
From: Hans Hagen @ 2009-03-18  8:05 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Wolfgang Schuster wrote:
> On Tue, Mar 17, 2009 at 11:27 PM, Hans Hagen <pragma@wxs.nl> wrote:
> 
>> - for a structured document using \switchtobodyfont is ok
> 
> What do you mean with structured document?

one where there is some logic in using fonts (and color) which 
unfortunately is seldom the case in styles that i have to write for 
customers -)



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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


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

* Re: font switching questions
  2009-03-17 22:27 ` Hans Hagen
  2009-03-17 23:48   ` Wolfgang Schuster
@ 2009-03-18  8:12   ` Alan Stone
  2009-03-18  8:23     ` Hans Hagen
  1 sibling, 1 reply; 24+ messages in thread
From: Alan Stone @ 2009-03-18  8:12 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1846 bytes --]

On Tue, Mar 17, 2009 at 11:27 PM, Hans Hagen <pragma@wxs.nl> wrote:

> Alan Stone wrote:
>
>> Ahoi,
>>
>> Following a previous discussion, I've been advised to "try to avoid
>> \switchtobodyfont and use \definedfont or \definefont instead".
>>
>
> what is better depends on the situation
>
> - for a structured document using \switchtobodyfont is ok
>
> - for special layout elements (headers, title pages, keywords) \definefont
> might be handier (esp when funny sizes are used)
>
> - when using \definefont it can be handy to use the symbolic names (Serif,
> SansBold etc) and sizes (sa 1.2) because that makes redefinition easier
>
> (1) What's the difference between \definefont and \definedfont ?
>>
>
> \definefont defines a macro that represents a font, and \definedfont just
> switches to a font (the forst one is more efficient when you switch often)
>
> (2) In the underneath example...
>>
>> (2a) how to implement \define(d)font for font switching ?
>>
>> (2b) how to define \myFontHook ?
>>
>> Thanks,
>> Alan
>>
>> \usemodule[t-lettrine]
>>
>> \usetypescriptfile[tps_arial]
>> \usetypescript[arial]
>>
>
> ... just look how gyre typefaces are defined
>
> \setupbodyfont[myFont,\myFontSize]
>>
>
> just \setupbodyfont[myFont,12pt]
>
> and an occasional \definefont[BigFont][SerifBold sa 3.5] which gives you
>  \BigFont


Which low level command allows to fill in \definefont[SomeFont][SomeSynonym
sa SomeScale] with SomeSynonym=Sans(X)/Serif(X) (X)=Bold/Italic, i.e.
regardless of the synonym's name (defined in the typescript)?


>
>> \setuphead[chapter][style={\switchtobodyfont[myOtherFont,\myOtherFontSize]}]
>>
>
> it depends on what can occur in a title, if there's math and monospaced and
> whatever being used mixed, then best use a typeface (apart from the one time
> definition it's quite fast to switch a typeface)
>
Alan

[-- Attachment #1.2: Type: text/html, Size: 3062 bytes --]

[-- Attachment #2: Type: text/plain, Size: 487 bytes --]

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

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

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

* Re: font switching questions
  2009-03-18  8:12   ` Alan Stone
@ 2009-03-18  8:23     ` Hans Hagen
  2009-03-18  8:39       ` Alan Stone
                         ` (2 more replies)
  0 siblings, 3 replies; 24+ messages in thread
From: Hans Hagen @ 2009-03-18  8:23 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Alan Stone wrote:
> On Tue, Mar 17, 2009 at 11:27 PM, Hans Hagen <pragma@wxs.nl> wrote:
> 
>> Alan Stone wrote:
>>
>>> Ahoi,
>>>
>>> Following a previous discussion, I've been advised to "try to avoid
>>> \switchtobodyfont and use \definedfont or \definefont instead".
>>>
>> what is better depends on the situation
>>
>> - for a structured document using \switchtobodyfont is ok
>>
>> - for special layout elements (headers, title pages, keywords) \definefont
>> might be handier (esp when funny sizes are used)
>>
>> - when using \definefont it can be handy to use the symbolic names (Serif,
>> SansBold etc) and sizes (sa 1.2) because that makes redefinition easier
>>
>> (1) What's the difference between \definefont and \definedfont ?
>> \definefont defines a macro that represents a font, and \definedfont just
>> switches to a font (the forst one is more efficient when you switch often)
>>
>> (2) In the underneath example...
>>> (2a) how to implement \define(d)font for font switching ?
>>>
>>> (2b) how to define \myFontHook ?
>>>
>>> Thanks,
>>> Alan
>>>
>>> \usemodule[t-lettrine]
>>>
>>> \usetypescriptfile[tps_arial]
>>> \usetypescript[arial]
>>>
>> ... just look how gyre typefaces are defined
>>
>> \setupbodyfont[myFont,\myFontSize]
>> just \setupbodyfont[myFont,12pt]
>>
>> and an occasional \definefont[BigFont][SerifBold sa 3.5] which gives you
>>  \BigFont
> 
> 
> Which low level command allows to fill in \definefont[SomeFont][SomeSynonym
> sa SomeScale] with SomeSynonym=Sans(X)/Serif(X) (X)=Bold/Italic, i.e.
> regardless of the synonym's name (defined in the typescript)?

it just follows the bodyfont

\definefont[SomeFont][SerifBold sa 1.5]

boils down to 'take the bold serif that we use in the bodyfont and scale 
it to 1.5 times the bodyfontsize'

so, if you then choose another bodyfont (say times instead of palatino) 
you don't need to adapt all your definitions

(there's also Normal, Bold etc that is even more generic in the sense 
that it can be sans or serif depending of the situation)

these symbolic names are there for a reason as i never want to see hard 
coded font names (and features) in my document styles more than once

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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


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

* Re: font switching questions
  2009-03-18  8:23     ` Hans Hagen
@ 2009-03-18  8:39       ` Alan Stone
  2009-03-18  8:51         ` Wolfgang Schuster
  2009-03-18 10:44         ` Hans Hagen
  2009-03-18 10:34       ` Alan Stone
  2009-03-18 15:26       ` Alan Stone
  2 siblings, 2 replies; 24+ messages in thread
From: Alan Stone @ 2009-03-18  8:39 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 474 bytes --]

On Wed, Mar 18, 2009 at 9:23 AM, Hans Hagen <pragma@wxs.nl> wrote:

>  Alan Stone wrote:
>
>> [...]
>>
>> Which low level command allows to fill in
>> \definefont[SomeFont][SomeSynonym
>> sa SomeScale] with SomeSynonym=Sans(X)/Serif(X) (X)=Bold/Italic, i.e.
>> regardless of the synonym's name (defined in the typescript)?
>>
>
> it just follows the bodyfont
>
> \definefont[SomeFont][SerifBold sa 1.5]


And what about non-bodyfonts (some other sans or serif font) ?

Alan

[-- Attachment #1.2: Type: text/html, Size: 931 bytes --]

[-- Attachment #2: Type: text/plain, Size: 487 bytes --]

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

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

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

* Re: font switching questions
  2009-03-18  8:39       ` Alan Stone
@ 2009-03-18  8:51         ` Wolfgang Schuster
  2009-03-18 10:44         ` Hans Hagen
  1 sibling, 0 replies; 24+ messages in thread
From: Wolfgang Schuster @ 2009-03-18  8:51 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 18.03.2009 um 09:39 schrieb Alan Stone:

> \definefont[SomeFont][SerifBold sa 1.5]
>
> And what about non-bodyfonts (some other sans or serif font) ?

Use the symbolic name from your typescripts

\definefont[ChapterFont][ArialBold sa 1.5]

Wolfgang

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

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


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

* Re: font switching questions
  2009-03-18  8:23     ` Hans Hagen
  2009-03-18  8:39       ` Alan Stone
@ 2009-03-18 10:34       ` Alan Stone
  2009-03-18 15:26       ` Alan Stone
  2 siblings, 0 replies; 24+ messages in thread
From: Alan Stone @ 2009-03-18 10:34 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1520 bytes --]

On Wed, Mar 18, 2009 at 9:23 AM, Hans Hagen <pragma@wxs.nl> wrote:

>  [...]
> (there's also Normal, Bold etc that is even more generic in the sense that
> it can be sans or serif depending of the situation)
>
> these symbolic names are there for a reason as i never want to see hard
> coded font names (and features) in my document styles more than once


What I'm looking for...

With:

\starttypescript [serif/sans] [somefont]
 \definefontsynonym [SomeFontRegular]  [name:somefont]
   [features=default]
 \definefontsynonym
[SomeFontItalic]   [name:somefontitalic]   [features=default]
 \definefontsynonym
[SomeFontBold]    [name:somefontbold]   [features=default]
 \definefontsynonym
[SomeFontBoldItalic] [name:somefontbolditalic] [features=default]
\stoptypescript

\starttypescript [serif/sans] [somefont]
 \setups [font:fallback:sans]
 \definefontsynonym [Regular]   [SomeFontRegular]
 \definefontsynonym [Italic]    [SomeFontItalic]
 \definefontsynonym [Bold]    [SomeFontBold]
 \definefontsynonym [BoldItalic]  [SomeFontBoldItalic]
\stoptypescript

\starttypescript [somefont]
 \definetypeface [somefont] [rm/ss] [serif/sans] [somefont] [default]
\stoptypescript
\usetypescriptfile[tps_somefont]
\usetypescript[somefont]
\definetypeface[myXTypeface][somefont]

and...

* somefont = arial, times, tahoma, courrier, ...

* X = Body/Chapter/Section/.../Header/Footer/...

how to...

\def\myXSymbolicName=\somecommandRegular/Bold/Italic{myXTypeface}

for...

\definefont[myXFont][myXSymbolicName sa myXScale]

Alan

[-- Attachment #1.2: Type: text/html, Size: 2132 bytes --]

[-- Attachment #2: Type: text/plain, Size: 487 bytes --]

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

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

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

* Re: font switching questions
  2009-03-18  8:39       ` Alan Stone
  2009-03-18  8:51         ` Wolfgang Schuster
@ 2009-03-18 10:44         ` Hans Hagen
  1 sibling, 0 replies; 24+ messages in thread
From: Hans Hagen @ 2009-03-18 10:44 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Alan Stone wrote:
> On Wed, Mar 18, 2009 at 9:23 AM, Hans Hagen <pragma@wxs.nl> wrote:
> 
>>  Alan Stone wrote:
>>
>>> [...]
>>>
>>> Which low level command allows to fill in
>>> \definefont[SomeFont][SomeSynonym
>>> sa SomeScale] with SomeSynonym=Sans(X)/Serif(X) (X)=Bold/Italic, i.e.
>>> regardless of the synonym's name (defined in the typescript)?
>>>
>> it just follows the bodyfont
>>
>> \definefont[SomeFont][SerifBold sa 1.5]
> 
> 
> And what about non-bodyfonts (some other sans or serif font) ?

wellm the whole idea of typefaces is that you can define many of them 
without interference


-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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


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

* Re: font switching questions
  2009-03-18  8:23     ` Hans Hagen
  2009-03-18  8:39       ` Alan Stone
  2009-03-18 10:34       ` Alan Stone
@ 2009-03-18 15:26       ` Alan Stone
  2009-03-18 16:03         ` Wolfgang Schuster
  2009-03-19 17:50         ` Wolfgang Schuster
  2 siblings, 2 replies; 24+ messages in thread
From: Alan Stone @ 2009-03-18 15:26 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 317 bytes --]

On Wed, Mar 18, 2009 at 9:23 AM, Hans Hagen <pragma@wxs.nl> wrote:

>  (there's also Normal, Bold etc that is even more generic in the sense
> that it can be sans or serif depending of the situation)
>
Re. code in attachment

Why is the font output not correct when using
\usetypescriptfile[tps_arial_normal] ?

Alan

[-- Attachment #1.2: Type: text/html, Size: 633 bytes --]

[-- Attachment #2: arialtest.tex --]
[-- Type: application/x-tex, Size: 283 bytes --]

[-- Attachment #3: arialtest_normal.pdf --]
[-- Type: application/pdf, Size: 7082 bytes --]

[-- Attachment #4: arialtest_sans.pdf --]
[-- Type: application/pdf, Size: 24225 bytes --]

[-- Attachment #5: tps_arial_normal.tex --]
[-- Type: application/x-tex, Size: 707 bytes --]

[-- Attachment #6: tps_arial_sans.tex --]
[-- Type: application/x-tex, Size: 720 bytes --]

[-- Attachment #7: Type: text/plain, Size: 487 bytes --]

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

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

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

* Re: font switching questions
  2009-03-18 15:26       ` Alan Stone
@ 2009-03-18 16:03         ` Wolfgang Schuster
  2009-03-19 15:17           ` Alan Stone
  2009-03-19 17:50         ` Wolfgang Schuster
  1 sibling, 1 reply; 24+ messages in thread
From: Wolfgang Schuster @ 2009-03-18 16:03 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 18.03.2009 um 16:26 schrieb Alan Stone:

> On Wed, Mar 18, 2009 at 9:23 AM, Hans Hagen <pragma@wxs.nl> wrote:
> (there's also Normal, Bold etc that is even more generic in the  
> sense that it can be sans or serif depending of the situation)
> Re. code in attachment
>
> Why is the font output not correct when using  
> \usetypescriptfile[tps_arial_normal] ?

Learn how to use \definetypeface, it's explained in the fonts manual
and in the new ConTeXt manual.

Wolfgang

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

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


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

* Re: font switching questions
  2009-03-18 16:03         ` Wolfgang Schuster
@ 2009-03-19 15:17           ` Alan Stone
  2009-03-19 15:24             ` Taco Hoekwater
                               ` (2 more replies)
  0 siblings, 3 replies; 24+ messages in thread
From: Alan Stone @ 2009-03-19 15:17 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Wed, Mar 18, 2009 at 5:03 PM, Wolfgang Schuster
<schuster.wolfgang@googlemail.com> wrote:
>>
>> [...]
>
> ... it's explained in the fonts manual
> and in the new ConTeXt manual.

The most important thing I understand from reading the fonts manual
and the ConTeXt manual's old and new font chapter for the n-th time
(lost count), is that explaining fonts and their use is not a piece
cake. As such, every effort in trying to explain it in a way that's
understandable to non initiated people can only be appreciated and
welcomed.

Nevertheless, I wonder...

Are fonts like men, or like women ?  ;O)

To be happy with a man you must understand him a lot and love him a
little. To be happy with a woman you must love her a lot and not try
to understand her at all.”
- Helen Rowland

As for the issue at hand...

Let's say goodbye with a smile, dear,
Just for a while, dear, we must part.
Don't let the parting upset you,
I'll not forget you, sweetheart.
We'll meet again, don't know where, don't know when,
But I know we'll meet again, some sunny day.
Keep smiling through, just like you always do,
'Til the blue skies drive the dark clouds far away.

So will you please say hello to the folks that I know,
Tell them I won't be long.
They'll be happy to know that as you saw me go,
I was singing this song.

After the rain comes the rainbow,
You'll see the rain go, never fear,
We two can wait for tomorrow,
Goodbye to sorrow, my dear.

( source: http://ingeb.org/songs/wellmeet.html )

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

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


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

* Re: font switching questions
  2009-03-19 15:17           ` Alan Stone
@ 2009-03-19 15:24             ` Taco Hoekwater
  2009-03-19 16:38               ` Alan Stone
  2009-03-19 18:17               ` George N. White III
  2009-03-19 15:29             ` Hans Hagen
  2009-03-19 15:36             ` Peter Rolf
  2 siblings, 2 replies; 24+ messages in thread
From: Taco Hoekwater @ 2009-03-19 15:24 UTC (permalink / raw)
  To: mailing list for ConTeXt users



Alan Stone wrote:
> 
> The most important thing I understand from reading the fonts manual
> and the ConTeXt manual's old and new font chapter for the n-th time
> (lost count), is that explaining fonts and their use is not a piece
> cake. As such, every effort in trying to explain it in a way that's
> understandable to non initiated people can only be appreciated and
> welcomed.

Any remaining inclarity in any published documentation is by definition
unexpected by the author of that documentation. So if something is
unclear, you really have to mention specifically what it is exactly
that is unclear. Otherwise, no progress will ever be made...

Best wishes,
Taco
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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


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

* Re: font switching questions
  2009-03-19 15:17           ` Alan Stone
  2009-03-19 15:24             ` Taco Hoekwater
@ 2009-03-19 15:29             ` Hans Hagen
  2009-03-19 16:39               ` Alan Stone
  2009-03-19 15:36             ` Peter Rolf
  2 siblings, 1 reply; 24+ messages in thread
From: Hans Hagen @ 2009-03-19 15:29 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Alan Stone wrote:

> Are fonts like men, or like women ?  ;O)

fonts are simply complex ...

- no real consistency (esp in names)
- complicted by the fact that we want (in tex) some coherent system
- complicated even more by math
- and by incomplete fonts
- and ...
- and ...

to some extend luatex/mkiv is making it a bit more convenient but even 
then ..

- fonts can have truckloads of features
- and related bugs
- and ...


Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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


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

* Re: font switching questions
  2009-03-19 15:17           ` Alan Stone
  2009-03-19 15:24             ` Taco Hoekwater
  2009-03-19 15:29             ` Hans Hagen
@ 2009-03-19 15:36             ` Peter Rolf
  2 siblings, 0 replies; 24+ messages in thread
From: Peter Rolf @ 2009-03-19 15:36 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Alan Stone schrieb:
> On Wed, Mar 18, 2009 at 5:03 PM, Wolfgang Schuster
> <schuster.wolfgang@googlemail.com> wrote:
>   
>>> [...]
>>>       
>> ... it's explained in the fonts manual
>> and in the new ConTeXt manual.
>>     
>
> The most important thing I understand from reading the fonts manual
> and the ConTeXt manual's old and new font chapter for the n-th time
> (lost count), is that explaining fonts and their use is not a piece
> cake. As such, every effort in trying to explain it in a way that's
> understandable to non initiated people can only be appreciated and
> welcomed.
>
> Nevertheless, I wonder...
>
> Are fonts like men, or like women ?  ;O)
>
> To be happy with a man you must understand him a lot and love him a
> little. To be happy with a woman you must love her a lot and not try
> to understand her at all.”
> - Helen Rowland
>
> As for the issue at hand...
>
> Let's say goodbye with a smile, dear,
> Just for a while, dear, we must part.
> Don't let the parting upset you,
> I'll not forget you, sweetheart.
> We'll meet again, don't know where, don't know when,
> But I know we'll meet again, some sunny day.
> Keep smiling through, just like you always do,
> 'Til the blue skies drive the dark clouds far away.
>
> So will you please say hello to the folks that I know,
> Tell them I won't be long.
> They'll be happy to know that as you saw me go,
> I was singing this song.
>
> After the rain comes the rainbow,
> You'll see the rain go, never fear,
> We two can wait for tomorrow,
> Goodbye to sorrow, my dear.
>
> ( source: http://ingeb.org/songs/wellmeet.html )
>
>   
i can't help it, but the song reminds me of the end of


  Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb

the same is true for fonts ;)


- Peter

> Alan
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
>
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________
>
>   


-- 
  "Es ist doch ein Trost,
   das Geldgier manchmal blöd macht."

             - Kottan in "Kottan ermittelt", Folge 9: "Die Einteilung" -



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

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


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

* Re: font switching questions
  2009-03-19 15:24             ` Taco Hoekwater
@ 2009-03-19 16:38               ` Alan Stone
  2009-03-19 18:17               ` George N. White III
  1 sibling, 0 replies; 24+ messages in thread
From: Alan Stone @ 2009-03-19 16:38 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, Mar 19, 2009 at 4:24 PM, Taco Hoekwater <taco@elvenkind.com> wrote:
>
>
> Alan Stone wrote:
>>
>> The most important thing I understand from reading the fonts manual
>> and the ConTeXt manual's old and new font chapter for the n-th time
>> (lost count), is that explaining fonts and their use is not a piece
>> cake. As such, every effort in trying to explain it in a way that's
>> understandable to non initiated people can only be appreciated and
>> welcomed.
>
> Any remaining inclarity in any published documentation is by definition
> unexpected by the author of that documentation.

Hmmm...

By definition ???

What a fascinating point of view.

>So if something is
> unclear, you really have to mention specifically what it is exactly
> that is unclear. Otherwise, no progress will ever be made...

Indeed.

However, please take into account that...

This topic is (way ?) beyond my present means of comprehension. So be
prepared to receive some stupid and/or hilarious questions.   ;O)

It might also be, quoting the great Alberto, and with all due respect
(really) for the author(s)...

“If you can't explain it simply, you don't understand it well enough”
- Albert Einstein

>From my own small experience, it's often a mix of both.

And that's ok.

That means there's means of improvement, learning and growth for
everybody involved.

Considering the complexity of the matter and taking into account the
great Alberto's wise words, I'll try to understand my own questions
first before posting them in a hopefully understandable way.

Talk soon.

Cheers,
Alan

>
> Best wishes,
> Taco
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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


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

* Re: font switching questions
  2009-03-19 15:29             ` Hans Hagen
@ 2009-03-19 16:39               ` Alan Stone
  0 siblings, 0 replies; 24+ messages in thread
From: Alan Stone @ 2009-03-19 16:39 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, Mar 19, 2009 at 4:29 PM, Hans Hagen <pragma@wxs.nl> wrote:
> Alan Stone wrote:
>
>> Are fonts like men, or like women ?  ;O)
>
> fonts are simply complex ...

Ok, they're like women then.

Alan


> - no real consistency (esp in names)
> - complicted by the fact that we want (in tex) some coherent system
> - complicated even more by math
> - and by incomplete fonts
> - and ...
> - and ...
>
> to some extend luatex/mkiv is making it a bit more convenient but even then
> ..
>
> - fonts can have truckloads of features
> - and related bugs
> - and ...
>
>
> Hans
>
> -----------------------------------------------------------------
>                                          Hans Hagen | PRAGMA ADE
>              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>     tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
>                                             | www.pragma-pod.nl
> -----------------------------------------------------------------
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to
> the Wiki!
>
> maillist : ntg-context@ntg.nl /
> http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________
>



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

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


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

* Re: font switching questions
  2009-03-18 15:26       ` Alan Stone
  2009-03-18 16:03         ` Wolfgang Schuster
@ 2009-03-19 17:50         ` Wolfgang Schuster
  2009-03-23 10:51           ` Alan Stone
  1 sibling, 1 reply; 24+ messages in thread
From: Wolfgang Schuster @ 2009-03-19 17:50 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 18.03.2009 um 16:26 schrieb Alan Stone:

> On Wed, Mar 18, 2009 at 9:23 AM, Hans Hagen <pragma@wxs.nl> wrote:
> (there's also Normal, Bold etc that is even more generic in the  
> sense that it can be sans or serif depending of the situation)


Read and understand!

% Typescript for Arial

\starttypescript [sans] [arial]
     \setups [font:fallback:sans]
     \definefontsynonym [Sans]           [ArialNormal]
     \definefontsynonym [SansItalic]     [ArialItalic]
     \definefontsynonym [SansBold]       [ArialBold]
     \definefontsynonym [SansBoldItalic] [ArialBoldItalic]
\stoptypescript

\starttypescript [sans] [arial]
     \definefontsynonym [ArialNormal]     [name:arial]            
[features=default]
     \definefontsynonym [ArialItalic]     [name:arialitalic]      
[features=default]
     \definefontsynonym [ArialBold]       [name:arialbold]        
[features=default]
     \definefontsynonym [ArialBoldItalic] [name:arialbolditalic]  
[features=default]
\stoptypescript

\starttypescript [arial]
     \definetypeface [arial] [ss] [sans] [arial] [default]
\stoptypescript

% Load the Arial typescript for certain elements

\usetypescript[sans][arial]

% Load the main typescripts and set the font for the document

\usetypescript[palatino]
\setupbodyfont[palatino]

% Define a new font for the header and set it

\definefont[SectionStyle][ArialBold sa 1.5] % Symbolic name for Arial

\setuphead[section][style=SectionStyle]

\starttext

\section{Knuth}

\input Knuth

\section{Zapf}

\input zapf

\stoptext

Wolfgang

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

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


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

* Re: font switching questions
  2009-03-19 15:24             ` Taco Hoekwater
  2009-03-19 16:38               ` Alan Stone
@ 2009-03-19 18:17               ` George N. White III
  1 sibling, 0 replies; 24+ messages in thread
From: George N. White III @ 2009-03-19 18:17 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, Mar 19, 2009 at 12:24 PM, Taco Hoekwater <taco@elvenkind.com> wrote:

> Alan Stone wrote:
>>
>> The most important thing I understand from reading the fonts manual
>> and the ConTeXt manual's old and new font chapter for the n-th time
>> (lost count), is that explaining fonts and their use is not a piece
>> cake. As such, every effort in trying to explain it in a way that's
>> understandable to non initiated people can only be appreciated and
>> welcomed.
>
> Any remaining inclarity in any published documentation is by definition
> unexpected by the author of that documentation. So if something is
> unclear, you really have to mention specifically what it is exactly
> that is unclear. Otherwise, no progress will ever be made...

When I write, I try to guess the level of understanding/background of the
reader.   With fonts (also graphics) it isn't appropriate to provide all the
background in a TeX documentation, so what is needed is a some
pointers to the required background material.   I do expect a reader
who comes without the required background to find things they don't
understand, but the way to handle that is to send them to the appropriate
references.

-- 
George N. White III <aa056@chebucto.ns.ca>
Head of St. Margarets Bay, Nova Scotia
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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


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

* Re: font switching questions
  2009-03-19 17:50         ` Wolfgang Schuster
@ 2009-03-23 10:51           ` Alan Stone
  2009-03-23 11:08             ` Wolfgang Schuster
  0 siblings, 1 reply; 24+ messages in thread
From: Alan Stone @ 2009-03-23 10:51 UTC (permalink / raw)
  To: mailing list for ConTeXt users

2009/3/19 Wolfgang Schuster <schuster.wolfgang@googlemail.com>:
>
> Am 18.03.2009 um 16:26 schrieb Alan Stone:
>
>> On Wed, Mar 18, 2009 at 9:23 AM, Hans Hagen <pragma@wxs.nl> wrote:
>> (there's also Normal, Bold etc that is even more generic in the sense that
>> it can be sans or serif depending of the situation)
>
>
> Read and understand!

Thanks for your comments Wolfgang.

Hope they're useful and beneficial to other people.

The example I adapted and was enquiring about was in the context of
what Hans replied earlier...

>(there's also Normal, Bold etc that is even more generic in the sense that it can be sans or
>serif depending of the situation)

Hans, does what you meant by the above correspond to Wolfgang's
example or did you mean something else ? If so, what precisely please
?

Thanks,
Alan

>
> % Typescript for Arial
>
> \starttypescript [sans] [arial]
>    \setups [font:fallback:sans]
>    \definefontsynonym [Sans]           [ArialNormal]
>    \definefontsynonym [SansItalic]     [ArialItalic]
>    \definefontsynonym [SansBold]       [ArialBold]
>    \definefontsynonym [SansBoldItalic] [ArialBoldItalic]
> \stoptypescript
>
> \starttypescript [sans] [arial]
>    \definefontsynonym [ArialNormal]     [name:arial]
> [features=default]
>    \definefontsynonym [ArialItalic]     [name:arialitalic]
> [features=default]
>    \definefontsynonym [ArialBold]       [name:arialbold]
> [features=default]
>    \definefontsynonym [ArialBoldItalic] [name:arialbolditalic]
> [features=default]
> \stoptypescript
>
> \starttypescript [arial]
>    \definetypeface [arial] [ss] [sans] [arial] [default]
> \stoptypescript
>
> % Load the Arial typescript for certain elements
>
> \usetypescript[sans][arial]
>
> % Load the main typescripts and set the font for the document
>
> \usetypescript[palatino]
> \setupbodyfont[palatino]
>
>
> % Define a new font for the header and set it
>
> \definefont[SectionStyle][ArialBold sa 1.5] % Symbolic name for Arial
>
> \setuphead[section][style=SectionStyle]
>
> \starttext
>
> \section{Knuth}
>
> \input Knuth
>
> \section{Zapf}
>
> \input zapf
>
> \stoptext
>
> Wolfgang
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

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


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

* Re: font switching questions
  2009-03-23 10:51           ` Alan Stone
@ 2009-03-23 11:08             ` Wolfgang Schuster
  0 siblings, 0 replies; 24+ messages in thread
From: Wolfgang Schuster @ 2009-03-23 11:08 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 23.03.2009 um 11:51 schrieb Alan Stone:

>> (there's also Normal, Bold etc that is even more generic in the  
>> sense that it can be sans or
>> serif depending of the situation)
>
> Hans, does what you meant by the above correspond to Wolfgang's
> example or did you mean something else ? If so, what precisely please?

\starttext

\rm text {\definedfont[Normal sa 2]text} text {\definedfont[Bold sa  
2]text} text

\ss text {\definedfont[Normal sa 2]text} text {\definedfont[Bold sa  
2]text} text

\stoptext

Wolfgang

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

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


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

* Re: font switching questions
  2009-03-23 11:16 Vyatcheslav Yatskovsky
@ 2009-03-23 11:20 ` Wolfgang Schuster
  0 siblings, 0 replies; 24+ messages in thread
From: Wolfgang Schuster @ 2009-03-23 11:20 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 23.03.2009 um 12:16 schrieb Vyatcheslav Yatskovsky:

> Hello Alan,
>
> If you need a typescript for Windows Arial, you can try font-win.tex,
> included in the latest beta.

type-win.tex ;-)

Wolfgang

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

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


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

* Re: font switching questions
@ 2009-03-23 11:16 Vyatcheslav Yatskovsky
  2009-03-23 11:20 ` Wolfgang Schuster
  0 siblings, 1 reply; 24+ messages in thread
From: Vyatcheslav Yatskovsky @ 2009-03-23 11:16 UTC (permalink / raw)
  To: software.list.1es9s; +Cc: ntg-context

Hello Alan,

If you need a typescript for Windows Arial, you can try font-win.tex,
included in the latest beta.

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

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


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

end of thread, other threads:[~2009-03-23 11:20 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-17 21:48 font switching questions Alan Stone
2009-03-17 22:27 ` Hans Hagen
2009-03-17 23:48   ` Wolfgang Schuster
2009-03-18  8:05     ` Hans Hagen
2009-03-18  8:12   ` Alan Stone
2009-03-18  8:23     ` Hans Hagen
2009-03-18  8:39       ` Alan Stone
2009-03-18  8:51         ` Wolfgang Schuster
2009-03-18 10:44         ` Hans Hagen
2009-03-18 10:34       ` Alan Stone
2009-03-18 15:26       ` Alan Stone
2009-03-18 16:03         ` Wolfgang Schuster
2009-03-19 15:17           ` Alan Stone
2009-03-19 15:24             ` Taco Hoekwater
2009-03-19 16:38               ` Alan Stone
2009-03-19 18:17               ` George N. White III
2009-03-19 15:29             ` Hans Hagen
2009-03-19 16:39               ` Alan Stone
2009-03-19 15:36             ` Peter Rolf
2009-03-19 17:50         ` Wolfgang Schuster
2009-03-23 10:51           ` Alan Stone
2009-03-23 11:08             ` Wolfgang Schuster
2009-03-23 11:16 Vyatcheslav Yatskovsky
2009-03-23 11:20 ` Wolfgang Schuster

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