Hi, I am running the current stable MkIV (ConTeXt ver: 2009.10.27 16:35 MKIV) but can't get hz/hanging with the old method (see below). Do we have some other way today? Steffen ------- \showframe \definefontfeature[default][default][mode=node,expansion=quality] \usetypescript[palatino] \setupbodyfont[palatino] \setupalign[hz,hanging] \starttext \input knuth \stoptext
On Nov 23, 2009, at 10:31 AM, Steffen Wolfrum wrote:
Hi,
I am running the current stable MkIV (ConTeXt ver: 2009.10.27 16:35 MKIV) but can't get hz/hanging with the old method (see below).
Do we have some other way today?
Steffen
-------
\showframe
\definefontfeature[default][default][mode=node,expansion=quality]
\definefontfeature[default][default][mode=node,expansion=quality,protrusion=pure]
\usetypescript[palatino] \setupbodyfont[palatino]
\enableprotruding \enableadjusting
\starttext
\input knuth
\stoptext
Best Thomas
Thomas A. Schmitz wrote:
\enableprotruding \enableadjusting
\setupaling[hanging] \setupaling[hz] also works with the align={..,..} 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 -----------------------------------------------------------------
And what's the way to define your own protrusion? Shouldn't it go like this? \showframe \startluacode fonts.protrusions.vectors['MyVector'] = { [0x2044] = { 0, 0.50 }, -- fraction slash [0x002f] = { 0, 0.50 }, -- solidus slash [0x002C] = { 0, 0.50 }, -- comma [0x002E] = { 0, 0.50 }, -- period [0x003A] = { 0, 0.50 }, -- colon [0x003B] = { 0, 0.50 }, -- semicolon [0x002D] = { 0, 0.50 }, -- hyphen [0x2013] = { 0, 0.25 }, -- endash [0x201C] = { 0, -1.25 }, -- quotedblleft } fonts.protrusions.classes['Mypure'] = { vector = 'MyVector', factor = 1 } fonts.expansions.classes['Myquality'] = { stretch = 1, shrink = 1, step = .5, vector = 'default', factor = 1 } \stopluacode \definefontfeature[default][default][mode=node,expansion=Myquality,protrusion=Mypure] \usetypescript[palatino] \setupbodyfont[palatino] \setupalign[hz,hanging] \enableprotruding \enableadjusting \starttext \input knuth \stoptext Steffen
Steffen Wolfrum wrote:
And what's the way to define your own protrusion?
Shouldn't it go like this?
\showframe
\startluacode fonts.protrusions.vectors['MyVector'] = {
[0x2044] = { 0, 0.50 }, -- fraction slash [0x002f] = { 0, 0.50 }, -- solidus slash [0x002C] = { 0, 0.50 }, -- comma [0x002E] = { 0, 0.50 }, -- period [0x003A] = { 0, 0.50 }, -- colon [0x003B] = { 0, 0.50 }, -- semicolon [0x002D] = { 0, 0.50 }, -- hyphen [0x2013] = { 0, 0.25 }, -- endash [0x201C] = { 0, -1.25 }, -- quotedblleft
} fonts.protrusions.classes['Mypure'] = { vector = 'MyVector', factor = 1 }
fonts.expansions.classes['Myquality'] = { stretch = 1, shrink = 1, step = .5, vector = 'default', factor = 1 } \stopluacode
something like that yes
\definefontfeature[default][default][mode=node,expansion=Myquality,protrusion=Mypure]
\usetypescript[palatino] \setupbodyfont[palatino]
\setupalign[hz,hanging]
\enableprotruding \enableadjusting
the last two are redundant and not needed ----------------------------------------------------------------- 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 -----------------------------------------------------------------
Am 23.11.2009 um 11:07 schrieb Hans Hagen:
Steffen Wolfrum wrote:
And what's the way to define your own protrusion? Shouldn't it go like this? \showframe \startluacode fonts.protrusions.vectors['MyVector'] = { [0x2044] = { 0, 0.50 }, -- fraction slash [0x002f] = { 0, 0.50 }, -- solidus slash [0x002C] = { 0, 0.50 }, -- comma [0x002E] = { 0, 0.50 }, -- period [0x003A] = { 0, 0.50 }, -- colon [0x003B] = { 0, 0.50 }, -- semicolon [0x002D] = { 0, 0.50 }, -- hyphen [0x2013] = { 0, 0.25 }, -- endash [0x201C] = { 0, -1.25 }, -- quotedblleft } fonts.protrusions.classes['Mypure'] = { vector = 'MyVector', factor = 1 } fonts.expansions.classes['Myquality'] = { stretch = 1, shrink = 1, step = .5, vector = 'default', factor = 1 } \stopluacode
something like that yes
but, that doesn't work anymore! just tested it with ConTeXt ver: 2009.10.27 16:35 MKIV: no protrusion at all ... Steffen
Steffen Wolfrum wrote:
Am 23.11.2009 um 11:07 schrieb Hans Hagen:
Steffen Wolfrum wrote:
And what's the way to define your own protrusion? Shouldn't it go like this? \showframe \startluacode fonts.protrusions.vectors['MyVector'] = { [0x2044] = { 0, 0.50 }, -- fraction slash [0x002f] = { 0, 0.50 }, -- solidus slash [0x002C] = { 0, 0.50 }, -- comma [0x002E] = { 0, 0.50 }, -- period [0x003A] = { 0, 0.50 }, -- colon [0x003B] = { 0, 0.50 }, -- semicolon [0x002D] = { 0, 0.50 }, -- hyphen [0x2013] = { 0, 0.25 }, -- endash [0x201C] = { 0, -1.25 }, -- quotedblleft } fonts.protrusions.classes['Mypure'] = { vector = 'MyVector', factor = 1 } fonts.expansions.classes['Myquality'] = { stretch = 1, shrink = 1, step = .5, vector = 'default', factor = 1 } \stopluacode something like that yes
but, that doesn't work anymore!
just tested it with ConTeXt ver: 2009.10.27 16:35 MKIV: no protrusion at all ...
use lowercase vector names a next beta will provide \enabletrackers[fonts.expansion] \enabletrackers[fonts.protrusion] which shows such problems ----------------------------------------------------------------- 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 -----------------------------------------------------------------
participants (3)
-
Hans Hagen
-
Steffen Wolfrum
-
Thomas A. Schmitz