ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* germandbls
@ 2000-04-18  7:40 Haseloff, Lutz
  2000-04-18 23:59 ` germandbls Taco Hoekwater
  2000-04-26  0:10 ` germandbls Uwe Koloska
  0 siblings, 2 replies; 6+ messages in thread
From: Haseloff, Lutz @ 2000-04-18  7:40 UTC (permalink / raw)


Hi Taco, Hi all,

with the new Context regular and beta the pdf-file of the following file
shows no sz:

\pdfprotrudechars=0
\setupbodyfont[pos,ber]
\useencoding[win]
\mainlanguage[de]
\starttext
weiß wei"s wei\SS
\showencoding
\stoptext

perhaps a bug in enco-win or enco-ini or enco-ec?
(i use ec encoding)

Greetings

Lutz


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

* Re: germandbls
  2000-04-18  7:40 germandbls Haseloff, Lutz
@ 2000-04-18 23:59 ` Taco Hoekwater
  2000-04-26  0:10 ` germandbls Uwe Koloska
  1 sibling, 0 replies; 6+ messages in thread
From: Taco Hoekwater @ 2000-04-18 23:59 UTC (permalink / raw)


Hi Lutz,

I don't use the latest version of context at the moment (I need to
work on something that requires a stable platform) so I cannot debug
your problem. You might want to try adding \useencoding[ec] and/or
deleting the \useencoding[win]. Tobias could maybe help you?

Greetings, Taco

-- 
Taco Hoekwater                                 taco.hoekwater@wkap.nl
Kluwer Academic Publishers                            -- Pre Press --
Achterom 119, 3311 KB Dordrecht, The Netherlands  tel.  31-78-6392550
---------------------------------------------------------------------


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

* Re: germandbls
  2000-04-18  7:40 germandbls Haseloff, Lutz
  2000-04-18 23:59 ` germandbls Taco Hoekwater
@ 2000-04-26  0:10 ` Uwe Koloska
  2000-04-27  8:10   ` germandbls Hans Hagen
  1 sibling, 1 reply; 6+ messages in thread
From: Uwe Koloska @ 2000-04-26  0:10 UTC (permalink / raw)


You wrote on Die, 18 Apr 2000:

I finally found the answer for this longstanding problem:

>Hi Taco, Hi all,
>
>with the new Context regular and beta the pdf-file of the following file
>shows no sz:
>
>\pdfprotrudechars=0

I hope this is a new command in pdftex-0.14 ;-)  What is it supposed to do?

>\setupbodyfont[pos,ber]
>\useencoding[win]
>\mainlanguage[de]
>\starttext
>weiß wei"s wei\SS
>\showencoding
>\stoptext
>
>perhaps a bug in enco-win or enco-ini or enco-ec?

Yeah, it's a bug in enco-ec.  There 

    \definecharacter sz 223
    \definecharacter SS 223

has to be replaced by

    \definecharacter sz 255
    \definecharacter SS 255

Don't forget to rebuild your context formats!

Why?  223 is the code for germandbls in TexBase1-encoding -- 255 the same
in EC- or Cork-encoding.  I didn't scan the rest of the file for other
TexBase1-codes ...

AFAI can see, TexBase1 is the encoding with most of the important glyphs
available in 256 chars.  Maybe it's good to use tb1 instead of ec to have
direct access to \copyright (now this is build from a circle out of
CMSY10 and 'c') and the like -- have to think about that.

Yours
Uwe Koloska

-- 
mailto:koloska@rcs.urz.tu-dresden.de
http://rcswww.urz.tu-dresden.de/~koloska/
--                                    --
right now the web page is in german only
but this will change as time goes by ;-)


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

* Re: germandbls
  2000-04-26  0:10 ` germandbls Uwe Koloska
@ 2000-04-27  8:10   ` Hans Hagen
  0 siblings, 0 replies; 6+ messages in thread
From: Hans Hagen @ 2000-04-27  8:10 UTC (permalink / raw)
  Cc: ntg-context

At 02:10 AM 4/26/2000 +0200, Uwe Koloska wrote:

>>\pdfprotrudechars=0

It moves chars defined as such in the margin, like hanging punctuation.
Some day soon I will provide support for this (is currently under test as
part of Thanhs thesis).  

>Yeah, it's a bug in enco-ec.  There 
>
>    \definecharacter sz 223
>    \definecharacter SS 223
>
>has to be replaced by
>
>    \definecharacter sz 255
>    \definecharacter SS 255

Ok. Changed. 

>available in 256 chars.  Maybe it's good to use tb1 instead of ec to have
>direct access to \copyright (now this is build from a circle out of
>CMSY10 and 'c') and the like -- have to think about that.

I can make a tb1 if someone provides me the right list of numbers ... 

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


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

* Re: germandbls
  1999-10-14  9:31   ` germandbls Taco Hoekwater
@ 1999-10-14 11:01     ` Peter Willadt
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Willadt @ 1999-10-14 11:01 UTC (permalink / raw)


Taco Hoekwater schrieb:
> 
> There are two problems here at the same time I think, one in
> enco-ec.tex and one in your input file.
> 
> - enco-ec misses a line. Hans, please add this one close to the SS one:
> 
> \definecharacter ss 255
> 
> (have to regenerate formats after that change)
> 
> - you need \useencoding[win] for ß to map to the right control sequence.
> 
Hello,

this also resolves my problems with german double s reported a few days
ago.

Peter Willadt


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

* germandbls
  1999-10-14  6:19 ` Palatino Matthew Baker
@ 1999-10-14  9:31   ` Taco Hoekwater
  1999-10-14 11:01     ` germandbls Peter Willadt
  0 siblings, 1 reply; 6+ messages in thread
From: Taco Hoekwater @ 1999-10-14  9:31 UTC (permalink / raw)
  Cc: ntg-context

>>>>> "Matthew" == Matthew Baker <Matthew.Baker@gmd.de> writes:

    Matthew> in pdftex.conf.  Everything still works as before except
    Matthew> ß comes up as SS (I always get this with the ec encoding
    Matthew> in ConTeXt).  And I still have no ligatures.  Do I need

There are two problems here at the same time I think, one in
enco-ec.tex and one in your input file.

- enco-ec misses a line. Hans, please add this one close to the SS one:

\definecharacter ss 255

(have to regenerate formats after that change)

- you need \useencoding[win] for ß to map to the right control sequence.

Taco

-- 
Taco Hoekwater                                 taco.hoekwater@wkap.nl
Kluwer Academic Publishers                            -- Pre Press --
Achterom 119, 3311 KB Dordrecht, The Netherlands  tel.  31-78-6392550
---------------------------------------------------------------------


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

end of thread, other threads:[~2000-04-27  8:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-04-18  7:40 germandbls Haseloff, Lutz
2000-04-18 23:59 ` germandbls Taco Hoekwater
2000-04-26  0:10 ` germandbls Uwe Koloska
2000-04-27  8:10   ` germandbls Hans Hagen
  -- strict thread matches above, loose matches on Subject: below --
1999-10-13  8:37 Palatino Taco Hoekwater
1999-10-14  6:19 ` Palatino Matthew Baker
1999-10-14  9:31   ` germandbls Taco Hoekwater
1999-10-14 11:01     ` germandbls Peter Willadt

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