summaryrefslogtreecommitdiff
path: root/fonts/poorman/MakeFont
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /fonts/poorman/MakeFont
Initial commit
Diffstat (limited to 'fonts/poorman/MakeFont')
-rw-r--r--fonts/poorman/MakeFont28
1 files changed, 28 insertions, 0 deletions
diff --git a/fonts/poorman/MakeFont b/fonts/poorman/MakeFont
new file mode 100644
index 0000000000..1a96fa02cd
--- /dev/null
+++ b/fonts/poorman/MakeFont
@@ -0,0 +1,28 @@
+#!/bin/sh
+# <- lines with that character are comments
+#
+# Use this as a guide, you will almost certainly need to make changes
+#
+# you may very well need supervisor privileges to do all this
+# if your system has such things
+#
+# call METAFONT with approriate mode $1 means: 1st parameter on command line
+mf '\mode=nexthi;' '\scrollmode;' '\mag=1;' input $1
+# assuming all went well, move or copy tfm file to appropriate directory
+mv $1.tfm /NextLibrary/Fonts/TeXFonts/tfm
+# make a pk file from the gf file adjust resolution numbers as required
+gftopk $1.400gf $1.400pk
+# move/copy the resulting pk file to the right directory on your system
+mv $1.400pk /NextLibrary/Fonts/TeXFonts/pk
+# remove any files which are no longer needed and return
+rm $1.400gf
+rm $1.log
+rm $1.mf
+
+
+
+
+
+
+
+