summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/context
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-10-14 23:36:39 +0000
committerKarl Berry <karl@freefriends.org>2010-10-14 23:36:39 +0000
commit4b45b0373a2f9835cf284999e108e5ba408733f7 (patch)
tree4e1ff39e646af41d5a2a7caf44b5b76ed36565f3 /Master/texmf-dist/source/context
parent54a4f2a4b7d8a00d772ebee3b2e4f404bf33eb9b (diff)
context-simplefonts update (14oct10)
git-svn-id: svn://tug.org/texlive/trunk@20103 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/context')
-rw-r--r--Master/texmf-dist/source/context/third/simplefonts/doc/simplefonts.tex66
1 files changed, 0 insertions, 66 deletions
diff --git a/Master/texmf-dist/source/context/third/simplefonts/doc/simplefonts.tex b/Master/texmf-dist/source/context/third/simplefonts/doc/simplefonts.tex
deleted file mode 100644
index 1c56ae76d83..00000000000
--- a/Master/texmf-dist/source/context/third/simplefonts/doc/simplefonts.tex
+++ /dev/null
@@ -1,66 +0,0 @@
-\usemodule[simplefonts][size=10pt]
-
-\setmainfont[DejaVu Serif]
-\setsansfont[DejaVu Sans]
-\setmonofont[DejaVu Sans Mono]
-
-\starttext
-
-\startbodymatter
-
-\title{The {\em simplefonts} module}
-
-Writing typescripts for \ConTeXt\ can be a tedious job, …
-
-\starttyping
-\simplefont[<font>][..,..=..,..]
-\stoptyping
-
-\startlines
-{\simplefont[TeX Gyre Pagella]TeX Gyre Pagella}
-{\simplefont[TeX Gyre Termes]TeX Gyre Termes}
-{\simplefont[TeX Gyre Heros]TeX Gyre Heros}
-{\simplefont[TeX Gyre Bonum]TeX Gyre Bonum}
-{\simplefont[TeX Gyre Schola]TeX Gyre Schola}
-{\simplefont[TeX Gyre Adventor]TeX Gyre Adventor}
-{\simplefont[TeX Gyre Cursor]TeX Gyre Cursor}
-{\simplefont[TeX Gyre Chorus]TeX Gyre Chorus}
-\stoplines
-
-\stopbodymatter
-
-\startappendices
-
-\section[sec:features]{Features}
-
-\startluacode
-tex.sprint("\\starttabulate[|l|p|p|]")
-for k, v in next, fonts.otf.tables.features do
- tex.sprint(string.format("\\NC %s\\NC %s\\NC %s\\NC\\NR",k,string.gsub(v,"#","\\letterhash"),string.lower(string.gsub(v,"[^a-zA-Z0-9]",""))))
-end
-tex.sprint("\\stoptabulate")
-\stopluacode
-
-\section[sec:scripts]{Scripts}
-
-\startluacode
-tex.sprint("\\starttabulate[|l|p|p|]")
-for k, v in next, fonts.otf.tables.scripts do
- tex.sprint(string.format("\\NC %s\\NC %s\\NC %s\\NC\\NR",k,string.gsub(v,"#","\\letterhash"),string.lower(string.gsub(v,"[^a-zA-Z0-9]",""))))
-end
-tex.sprint("\\stoptabulate")
-\stopluacode
-
-\section[sec:languages]{Languages}
-
-\startluacode
-tex.sprint("\\starttabulate[|l|p|p|]")
-for k, v in next, fonts.otf.tables.languages do
- tex.sprint(string.format("\\NC %s\\NC %s\\NC %s\\NC\\NR",k,string.gsub(v,"#","\\letterhash"),string.lower(string.gsub(v,"[^a-zA-Z0-9]",""))))
-end
-tex.sprint("\\stoptabulate")
-\stopluacode
-
-\stopappendices
-
-\stoptext