Am 06.01.2012 um 12:23 schrieb Susan Dittmar:
Dear Jan,
when I turn off the compression [extend=0.8] -> [extend=1] the problems are gone :-) ... the compression unfourtunately also :-( What do I have to configure to get the compression without spaces? :-)
I guess you will need a new font, or a new version of the same font with compression. I am sure there are tools out there that can do the compression of a font.
As far as I understand, TeX itself knows nothing about the glyphs. They are just some boxes for the TeX engine. It does not handle the glyphs itself -- TeX just places them. So the only way TeX has to compress fonts is to push the glyphs closer together -- thus introducing these 'spaces' (in fact, they are negative spaces, places where TeX interrupts words to push the glyphs closer together).
In very special cases you might be able to use postscript's (or pdf's) transformation engine to archieve condensed fonts. I once used that by creating a minipage with 'normal' font within a picture environment that itself then did the transformation. But I guess that's not what you really are after.
As you can in the example below the font is stretched to the given value but the problem when you copy the text can be in the algorithm Adobe Reader use to determine spaces in the text. \starttext \define[1]\ExtendFont {\definefontfeature[condensed][default][extend=#1] \definedfont[name:allerlight*condensed]The quick brown fox jumps over the lazy dog.\endgraf} \processcommalist[0.4,0.6,0.8,1.0,1.2,1.4]\ExtendFont \stoptext Wolfgang