summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/fonts/phaistos
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-09 00:47:01 +0000
committerKarl Berry <karl@freefriends.org>2006-01-09 00:47:01 +0000
commit950209b26f70aa87ed07c54f82a95b6f03b7c3a0 (patch)
tree32b2d4ab4e36aee3a9aaf41877a5c0c581de9b77 /Master/texmf-dist/doc/fonts/phaistos
parent71c5ce4be7e36bdc6bdda98641bc9368e28223ad (diff)
doc/fonts
git-svn-id: svn://tug.org/texlive/trunk@83 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/fonts/phaistos')
-rwxr-xr-xMaster/texmf-dist/doc/fonts/phaistos/getglyphs31
-rw-r--r--Master/texmf-dist/doc/fonts/phaistos/glyphTable.pdfbin0 -> 185096 bytes
2 files changed, 31 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/fonts/phaistos/getglyphs b/Master/texmf-dist/doc/fonts/phaistos/getglyphs
new file mode 100755
index 00000000000..3a999c7f694
--- /dev/null
+++ b/Master/texmf-dist/doc/fonts/phaistos/getglyphs
@@ -0,0 +1,31 @@
+#!/usr/bin/perl
+#
+# (c) Copyright 2004 Apostolos Syropoulos
+#
+# This program can be used to geneate a table of the glyphs
+# that are provided by the ``phaistos'' LaTeX package.
+# This program is absolutely free software.
+#
+open (XX, "phaistos.sty") || die "Can't open file './phaistos.sty'\n";
+open (YY, ">glyphs.tex") || die "Can't create file './glyphs.tex'\n";
+print YY <<Header;
+\\documentclass[a4paper]{article}
+\\usepackage{phaistos,multicol,fullpage}
+\\begin{document}
+\\small
+\\setlength{\\columnseprule}{0.5pt}
+\\begin{multicols}{4}
+\\noindent
+Header
+while(<XX>){
+ if (s/^\\DeclareTextSymbol\{\\//) {
+ /^(\w*)/;
+ print YY "\\verb|\\$1 = |\\$1\\newline \n";
+ }
+}
+print YY <<Trailer;
+\\end{multicols}
+\\thispagestyle{empty}
+\\end{document}
+Trailer
+__END__
diff --git a/Master/texmf-dist/doc/fonts/phaistos/glyphTable.pdf b/Master/texmf-dist/doc/fonts/phaistos/glyphTable.pdf
new file mode 100644
index 00000000000..a67cae1def8
--- /dev/null
+++ b/Master/texmf-dist/doc/fonts/phaistos/glyphTable.pdf
Binary files differ