diff options
author | Karl Berry <karl@freefriends.org> | 2013-06-23 23:38:05 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-06-23 23:38:05 +0000 |
commit | 60f28f85f2707b6a48c3b5aec0ea68b8ee21e466 (patch) | |
tree | ab34d8d573457bea6a804ee3d5de48dd500bf028 /Master/texmf-dist/tex/context/base/s-fnt-29.mkiv | |
parent | ac5882d0cb115e11b5cc2e62107ef5822f3507f5 (diff) |
context
git-svn-id: svn://tug.org/texlive/trunk@30865 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/context/base/s-fnt-29.mkiv')
-rw-r--r-- | Master/texmf-dist/tex/context/base/s-fnt-29.mkiv | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/Master/texmf-dist/tex/context/base/s-fnt-29.mkiv b/Master/texmf-dist/tex/context/base/s-fnt-29.mkiv deleted file mode 100644 index f9e0a165879..00000000000 --- a/Master/texmf-dist/tex/context/base/s-fnt-29.mkiv +++ /dev/null @@ -1,71 +0,0 @@ -%D \module -%D [ file=s-fnt-29, -%D version=2010.09.27, -%D title=\CONTEXT\ Style File, -%D subtitle=Tracing Shapes, -%D author=Hans Hagen, -%D date=\currentdate, -%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}] -%C -%C This module is part of the \CONTEXT\ macro||package and is -%C therefore copyrighted by \PRAGMA. See mreadme.pdf for -%C details. - -\startluacode - - local fontdata = fonts.hashes.identifiers - - function fonts.tracers.shapes() -- todo: ranges - local NC, NR = context.NC, context.NR - local char = context.char - local chrs = fontdata[font.current()].characters - -- local desc = fontdata[font.current()].descriptions - context.starttabulate { "|l|c|c|c|c|l|" } - context.FL() - NC() context("unicode") - NC() context("glyph") - NC() context("shape") - NC() context("lower") - NC() context("upper") - -- NC() context("name") - NC() context("description") - NC() NR() - context.TL() - for k, v in next, characters.data do - if chrs[k] then - NC() context("0x%05X",k) - NC() char(k) - NC() char(v.shcode) - NC() char(v.lccode or k) - NC() char(v.uccode or k) - -- NC() context(desc[k].name) - NC() context(v.description) - NC() NR() - end - end - context.stoptabulate() - end - -\stopluacode - -\continueifinputfile{s-fnt-29.mkiv} - -\setupbodyfont[dejavu,tt,9pt] - -\setuplayout - [backspace=1cm, - topspace=1cm, - footer=1cm, - header=0cm, - height=middle, - width=middle] - -\setupfootertexts - [] - [\fontname\font\quad\pagenumber] - -\starttext - - \ctxlua{fonts.tracers.shapes()} - -\stoptext |