summaryrefslogtreecommitdiff
path: root/fonts/mflogo
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/mflogo
Initial commit
Diffstat (limited to 'fonts/mflogo')
-rw-r--r--fonts/mflogo/Makefile112
-rw-r--r--fonts/mflogo/README59
l---------fonts/mflogo/mf/logo.mf1
l---------fonts/mflogo/mf/logo10.mf1
l---------fonts/mflogo/mf/logo8.mf1
l---------fonts/mflogo/mf/logo9.mf1
l---------fonts/mflogo/mf/logobf10.mf1
l---------fonts/mflogo/mf/logod10.mf1
l---------fonts/mflogo/mf/logosl10.mf1
-rw-r--r--fonts/mflogo/mf/logosl8.mf12
l---------fonts/mflogo/mf/logosl9.mf1
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/README39
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/afm/logo10.afm44
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/afm/logo8.afm44
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/afm/logo9.afm44
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/afm/logobf10.afm44
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/afm/logod10.afm37
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/afm/logosl10.afm44
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/afm/logosl8.afm38
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/afm/logosl9.afm37
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/logo10.pfbbin0 -> 3724 bytes
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/logo8.pfbbin0 -> 3712 bytes
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/logo9.pfbbin0 -> 3707 bytes
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/logobf10.pfbbin0 -> 3757 bytes
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/logod10.pfbbin0 -> 3634 bytes
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/logosl10.pfbbin0 -> 3951 bytes
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/logosl8.pfbbin0 -> 3760 bytes
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/logosl9.pfbbin0 -> 3753 bytes
-rw-r--r--fonts/mflogo/ps-type1/hoekwater/mflogo.map9
-rw-r--r--fonts/mflogo/tfm/logo10.tfmbin0 -> 264 bytes
-rw-r--r--fonts/mflogo/tfm/logo8.tfmbin0 -> 264 bytes
-rw-r--r--fonts/mflogo/tfm/logo9.tfmbin0 -> 264 bytes
-rw-r--r--fonts/mflogo/tfm/logobf10.tfmbin0 -> 264 bytes
-rw-r--r--fonts/mflogo/tfm/logod10.tfmbin0 -> 264 bytes
-rw-r--r--fonts/mflogo/tfm/logosl10.tfmbin0 -> 264 bytes
-rw-r--r--fonts/mflogo/tfm/logosl8.tfmbin0 -> 264 bytes
-rw-r--r--fonts/mflogo/tfm/logosl9.tfmbin0 -> 264 bytes
37 files changed, 571 insertions, 0 deletions
diff --git a/fonts/mflogo/Makefile b/fonts/mflogo/Makefile
new file mode 100644
index 0000000000..d1da91d1a9
--- /dev/null
+++ b/fonts/mflogo/Makefile
@@ -0,0 +1,112 @@
+## Makefile for the installation of the `mflogo' fonts:
+##
+## 1999-03-15, Ulrik Vieth <vieth@thphy.uni-duesseldorf.de>
+##
+
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+## Usage:
+##
+## say 'make install' to install the fonts
+##
+
+### package specifics (don't change!):
+
+# package name, used in directories
+SUPPLIER = public
+TYPEFACE = mflogo
+
+# file names, used in dependencies
+
+MFFILES = \
+ logo.mf \
+ logo10.mf \
+ logo9.mf \
+ logo8.mf \
+ logosl10.mf \
+ logosl9.mf \
+ logosl8.mf \
+ logobf10.mf \
+ logod10.mf
+TFMFILES = \
+ logo10.tfm \
+ logo9.tfm \
+ logo8.tfm \
+ logosl10.tfm \
+ logosl9.tfm \
+ logosl8.tfm \
+ logobf10.tfm \
+ logod10.tfm
+
+
+### customizable variables:
+
+# Where the TeX installation resides:
+TEXMF = `kpsewhich --expand-path='$$TEXMFMAIN'`
+#TEXMF = /usr/local/teTeX/share/texmf
+
+# standard directories
+srcdir = .
+MFDIR = $(TEXMF)/fonts/source/$(SUPPLIER)/$(TYPEFACE)
+TFMDIR = $(TEXMF)/fonts/tfm/$(SUPPLIER)/$(TYPEFACE)
+
+
+# How to install the files:
+INSTALL = cp -p
+#INSTALL = install -c
+
+# How to cleanup the files:
+CLEAN = rm -f
+
+# How to update the directory database:
+TEXHASH = mktexlsr
+#TEXHASH = texhash
+
+
+### unpack targets:
+
+default: all
+all:
+ @echo
+ @echo "Please call \`make install' to install the font files!"
+ @echo
+ @true
+
+### install targets:
+
+install: install-fonts post-install
+.PHONY: install
+
+install-fonts:
+ test -d $(MFDIR) || mkdir $(MFDIR)
+ (for f in $(MFFILES); \
+ do $(INSTALL) $(srcdir)/mf/$$f $(MFDIR); done)
+ test -d $(TFMDIR) || mkdir $(TFMDIR)
+ (for f in $(TFMFILES); \
+ do $(INSTALL) $(srcdir)/tfm/$$f $(TFMDIR); done)
+.PHONY: install-fonts
+
+# uninstall target:
+
+uninstall:
+ (for f in $(MFFILES); \
+ do $(CLEAN) $(MFDIR)/$$f; done)
+ (for f in $(TFMFILES); \
+ do $(CLEAN) $(TFMDIR)/$$f; done)
+.PHONY: uninstall
+
+
+# Update the directory database:
+post-install:
+ $(TEXHASH)
+.PHONY: post-install
+
+
+### clean targets:
+clean:
+ rm -f *.log *.aux *.toc *.lof *.lot *.bbl *.blg
+ rm -f *.idx *.ind *.ilg *.glo *.gls
+
+distclean: clean
diff --git a/fonts/mflogo/README b/fonts/mflogo/README
new file mode 100644
index 0000000000..64b73f3db9
--- /dev/null
+++ b/fonts/mflogo/README
@@ -0,0 +1,59 @@
+fonts/mflogo --- Metafont and MetaPost logo fonts.
+
+Copyright (C) 1979--99 Donald E. Knuth
+
+CTAN distribution compiled by Ulrik Vieth
+
+
+COPYING:
+
+Unless otherwise stated, all files in the subdirectory `mf'
+are official sources of the Metafont and MetaPost `logo' fonts.
+They are distributed under the terms of the file README.KNUTH
+which says:
+
+ [These files] ... are master files for TeX and METAFONT,
+ maintained personally by Donald E. Knuth. Nobody else is
+ authorized to make any changes whatever to them! If you
+ modify the files for any purpose, you must give your files
+ a different name, so that installations of TeX throughout
+ the world will be 100% compatible when they use the
+ official source files.
+
+Some unofficial additions to the `logo' fonts are distributed
+under the terms of LaTeX Project Public License as described
+in the relevant files.
+
+
+DESCRIPTION:
+
+This directory and its subdirectories are part of the `mflogo'
+package for LaTeX(2e) that provides access to the Metafont and
+MetaPost `logo' fonts designed by Donald E. Knuth.
+
+This directory appears on CTAN archives in two different places:
+
+ CTAN:fonts/mflogo
+ CTAN:macros/latex/contrib/supported/mflogo/fonts
+
+Whatever it may be, this directory contains two subdirectories
+`mf' and `tfm' that hold the Metafont sources and font metrics
+of the Metafont and MetaPost `logo' fonts.
+
+To access the `logo' fonts in LaTeX(2e), you may wish to consult
+the `mflogo' package in CTAN:macros/latex/contrib/supported.
+
+
+INSTALLATION:
+
+- If you have a TDS-compatible TeX installation, you may try to
+ use the enclosed `Makefile' by calling:
+
+ make install
+
+- For manual installation, copy the contents of the subdirectories
+ `mf' and `tfm' to TEXMF/fonts/{source,tfm}/public/mflogo or
+ wherever else your installation keeps .mf sources and .tfm files.
+
+
+Happy TeXing!
diff --git a/fonts/mflogo/mf/logo.mf b/fonts/mflogo/mf/logo.mf
new file mode 120000
index 0000000000..9d0d693cbb
--- /dev/null
+++ b/fonts/mflogo/mf/logo.mf
@@ -0,0 +1 @@
+../../../systems/knuth/dist/lib/logo.mf \ No newline at end of file
diff --git a/fonts/mflogo/mf/logo10.mf b/fonts/mflogo/mf/logo10.mf
new file mode 120000
index 0000000000..1df97fd13c
--- /dev/null
+++ b/fonts/mflogo/mf/logo10.mf
@@ -0,0 +1 @@
+../../../systems/knuth/dist/lib/logo10.mf \ No newline at end of file
diff --git a/fonts/mflogo/mf/logo8.mf b/fonts/mflogo/mf/logo8.mf
new file mode 120000
index 0000000000..1f852883b1
--- /dev/null
+++ b/fonts/mflogo/mf/logo8.mf
@@ -0,0 +1 @@
+../../../systems/knuth/dist/lib/logo8.mf \ No newline at end of file
diff --git a/fonts/mflogo/mf/logo9.mf b/fonts/mflogo/mf/logo9.mf
new file mode 120000
index 0000000000..d2c9d92a25
--- /dev/null
+++ b/fonts/mflogo/mf/logo9.mf
@@ -0,0 +1 @@
+../../../systems/knuth/dist/lib/logo9.mf \ No newline at end of file
diff --git a/fonts/mflogo/mf/logobf10.mf b/fonts/mflogo/mf/logobf10.mf
new file mode 120000
index 0000000000..6eb4c9cbd0
--- /dev/null
+++ b/fonts/mflogo/mf/logobf10.mf
@@ -0,0 +1 @@
+../../../systems/knuth/dist/lib/logobf10.mf \ No newline at end of file
diff --git a/fonts/mflogo/mf/logod10.mf b/fonts/mflogo/mf/logod10.mf
new file mode 120000
index 0000000000..59a0dbea80
--- /dev/null
+++ b/fonts/mflogo/mf/logod10.mf
@@ -0,0 +1 @@
+../../../systems/knuth/local/lib/logod10.mf \ No newline at end of file
diff --git a/fonts/mflogo/mf/logosl10.mf b/fonts/mflogo/mf/logosl10.mf
new file mode 120000
index 0000000000..d9ac189951
--- /dev/null
+++ b/fonts/mflogo/mf/logosl10.mf
@@ -0,0 +1 @@
+../../../systems/knuth/dist/lib/logosl10.mf \ No newline at end of file
diff --git a/fonts/mflogo/mf/logosl8.mf b/fonts/mflogo/mf/logosl8.mf
new file mode 100644
index 0000000000..5684ce948f
--- /dev/null
+++ b/fonts/mflogo/mf/logosl8.mf
@@ -0,0 +1,12 @@
+% 8-point slanted METAFONT logo
+% [ heavily borrowed from D. E. Knuth ]
+
+% Copyright (C) 1995--1999 Ulrik Vieth
+%
+% This program is free software; you can redistribute it and/or
+% modify it under the terms of the LaTeX Project Public License
+% as described in lppl.txt in the base LaTeX distribution; either
+% version 1 of the License, or (at your option) any later version.
+
+slant := 1/4;
+input logo8
diff --git a/fonts/mflogo/mf/logosl9.mf b/fonts/mflogo/mf/logosl9.mf
new file mode 120000
index 0000000000..261f352817
--- /dev/null
+++ b/fonts/mflogo/mf/logosl9.mf
@@ -0,0 +1 @@
+../../../systems/knuth/local/lib/logosl9.mf \ No newline at end of file
diff --git a/fonts/mflogo/ps-type1/hoekwater/README b/fonts/mflogo/ps-type1/hoekwater/README
new file mode 100644
index 0000000000..ee1a6fcf89
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/README
@@ -0,0 +1,39 @@
+
+Hi there,
+
+This directory contains a Type 1 version of the Metafont sources from
+the directory above (the mflogo font). The pfb files are intended to
+be used with the original TFM files, _don't_ run finst or afmtotfm on
+the afm files!
+
+The afm files are provided just in case you want to
+install the files on your windowing system. I'm sorry for
+the Macintosh users amongst you, but I don't know how to
+create the MacType1 files.
+
+This is version 1.002 of the converted logo font. The only difference
+with the previous version is the change to uppercase names, making it
+really simple to use this font as a drop-in replacement for the Y&Y
+version.
+
+The fonts should give exactly the same output results as
+the .mf originals, up to the point of sillyness. All bugs
+in the metafont sources have been kept (and there might be
+new ones).
+
+Files are herewith donated to the public domain, and
+provided as is. Note that I feel that the copyright
+from the metafont sources still applies, my only statement
+here is that I do not impose extra restrictions.
+
+Conversion process:
+ .mf -> metapost (c) Hobby -> .eps
+ .eps -> metafog (c) Kinch -> .pfb
+ .pfb -> hinted & touched up with FontLab v3.0c
+
+I can be reached for propositions/bugs at: taco.hoekwater@wkap.nl
+
+Greetings,
+
+Taco Hoekwater
+
diff --git a/fonts/mflogo/ps-type1/hoekwater/afm/logo10.afm b/fonts/mflogo/ps-type1/hoekwater/afm/logo10.afm
new file mode 100644
index 0000000000..26ea8df5a0
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/afm/logo10.afm
@@ -0,0 +1,44 @@
+StartFontMetrics 2.0
+Comment Panose 2 0 0 6 2 0 0 2 0 0
+FullName LOGO10
+FontName LOGO10
+FamilyName LOGO10
+Weight Medium
+Notice Copyright (c) Taco Hoekwater, 1998. All rights reserved.
+Version 001.002
+IsFixedPitch false
+ItalicAngle 0.00
+FontBBox 0 -11 722 611
+Ascender 700
+Descender -200
+XHeight 0
+CapHeight 600
+UnderlinePosition -100
+UnderlineThickness 50
+StdHW 60
+StdVW 66
+EncodingScheme FontSpecific
+StartCharMetrics 10
+C 69 ; WX 622 ; N E ; B 78 0 556 600 ;
+C 70 ; WX 622 ; N F ; B 78 -11 556 600 ;
+C 77 ; WX 800 ; N M ; B 78 -11 722 611 ;
+C 78 ; WX 667 ; N N ; B 78 -11 588 611 ;
+C 79 ; WX 667 ; N O ; B 33 -11 633 611 ;
+C 80 ; WX 622 ; N P ; B 78 -11 583 600 ;
+C 83 ; WX 622 ; N S ; B 78 0 583 600 ;
+C 84 ; WX 578 ; N T ; B 0 -11 578 600 ;
+C 65 ; WX 667 ; N A ; B 78 -11 589 611 ;
+C 32 ; WX 267 ; N space ; B 0 0 0 0 ;
+EndCharMetrics
+StartKernData
+StartKernPairs 3
+KPX F O -44
+
+KPX P O 44
+
+KPX T A -22
+
+EndKernPairs
+EndKernData
+EndFontMetrics
+ \ No newline at end of file
diff --git a/fonts/mflogo/ps-type1/hoekwater/afm/logo8.afm b/fonts/mflogo/ps-type1/hoekwater/afm/logo8.afm
new file mode 100644
index 0000000000..8afe8e524f
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/afm/logo8.afm
@@ -0,0 +1,44 @@
+StartFontMetrics 2.0
+Comment Panose 2 0 0 3 2 0 0 2 0 0
+FullName LOGO8
+FontName LOGO8
+FamilyName LOGO8
+Weight Medium
+Notice Copyright (c) Taco Hoekwater, 1998. All rights reserved.
+Version 001.002
+IsFixedPitch false
+ItalicAngle 0.00
+FontBBox 0 -10 764 610
+Ascender 700
+Descender -200
+XHeight 0
+CapHeight 600
+UnderlinePosition -100
+UnderlineThickness 50
+StdHW 60
+StdVW 66
+EncodingScheme FontSpecific
+StartCharMetrics 10
+C 69 ; WX 688 ; N E ; B 106 0 593 600 ;
+C 70 ; WX 688 ; N F ; B 106 -10 593 600 ;
+C 77 ; WX 870 ; N M ; B 106 -10 764 610 ;
+C 78 ; WX 733 ; N N ; B 106 -10 628 610 ;
+C 79 ; WX 733 ; N O ; B 60 -10 673 610 ;
+C 80 ; WX 688 ; N P ; B 106 -10 634 600 ;
+C 83 ; WX 688 ; N S ; B 106 0 635 600 ;
+C 84 ; WX 642 ; N T ; B 0 -10 642 600 ;
+C 65 ; WX 733 ; N A ; B 106 -10 627 610 ;
+C 32 ; WX 323 ; N space ; B 0 0 0 0 ;
+EndCharMetrics
+StartKernData
+StartKernPairs 3
+KPX F O -45
+
+KPX P O 45
+
+KPX T A -22
+
+EndKernPairs
+EndKernData
+EndFontMetrics
+ \ No newline at end of file
diff --git a/fonts/mflogo/ps-type1/hoekwater/afm/logo9.afm b/fonts/mflogo/ps-type1/hoekwater/afm/logo9.afm
new file mode 100644
index 0000000000..4622ee5589
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/afm/logo9.afm
@@ -0,0 +1,44 @@
+StartFontMetrics 2.0
+Comment Panose 2 0 0 3 2 0 0 2 0 0
+FullName LOGO9
+FontName LOGO9
+FamilyName LOGO9
+Weight Medium
+Notice Copyright (c) Taco Hoekwater, 1998. All rights reserved.
+Version 001.002
+IsFixedPitch false
+ItalicAngle 0.00
+FontBBox 0 -11 738 611
+Ascender 700
+Descender -200
+XHeight 0
+CapHeight 600
+UnderlinePosition -100
+UnderlineThickness 50
+StdHW 60
+StdVW 66
+EncodingScheme FontSpecific
+StartCharMetrics 10
+C 69 ; WX 647 ; N E ; B 88 0 570 600 ;
+C 70 ; WX 647 ; N F ; B 88 -11 570 600 ;
+C 77 ; WX 827 ; N M ; B 89 -11 738 611 ;
+C 78 ; WX 692 ; N N ; B 88 -11 604 611 ;
+C 79 ; WX 692 ; N O ; B 43 -11 649 611 ;
+C 80 ; WX 647 ; N P ; B 88 -11 603 600 ;
+C 83 ; WX 647 ; N S ; B 88 0 603 600 ;
+C 84 ; WX 602 ; N T ; B 0 -11 602 600 ;
+C 65 ; WX 689 ; N A ; B 89 -11 603 610 ;
+C 32 ; WX 287 ; N space ; B 0 0 0 0 ;
+EndCharMetrics
+StartKernData
+StartKernPairs 3
+KPX F O -44
+
+KPX P O 44
+
+KPX T A -22
+
+EndKernPairs
+EndKernData
+EndFontMetrics
+ \ No newline at end of file
diff --git a/fonts/mflogo/ps-type1/hoekwater/afm/logobf10.afm b/fonts/mflogo/ps-type1/hoekwater/afm/logobf10.afm
new file mode 100644
index 0000000000..4cdf077b86
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/afm/logobf10.afm
@@ -0,0 +1,44 @@
+StartFontMetrics 2.0
+Comment Panose 2 0 0 3 2 0 0 2 0 0
+FullName LOGOBF10
+FontName LOGOBF10
+FamilyName LOGOBF10
+Weight Bold
+Notice Copyright (c) Taco Hoekwater, 1998. All rights reserved.
+Version 001.002
+IsFixedPitch false
+ItalicAngle 0.00
+FontBBox 0 -11 863 611
+Ascender 700
+Descender -200
+XHeight 0
+CapHeight 600
+UnderlinePosition -100
+UnderlineThickness 50
+StdHW 110
+StdVW 122
+EncodingScheme FontSpecific
+StartCharMetrics 10
+C 69 ; WX 736 ; N E ; B 77 0 670 600 ;
+C 70 ; WX 736 ; N F ; B 77 -11 670 600 ;
+C 77 ; WX 940 ; N M ; B 77 -11 863 611 ;
+C 78 ; WX 787 ; N N ; B 77 -11 710 611 ;
+C 79 ; WX 787 ; N O ; B 26 -11 761 611 ;
+C 80 ; WX 736 ; N P ; B 77 -11 696 600 ;
+C 83 ; WX 736 ; N S ; B 77 0 697 600 ;
+C 84 ; WX 684 ; N T ; B 0 -11 684 600 ;
+C 65 ; WX 787 ; N A ; B 77 -11 710 611 ;
+C 32 ; WX 327 ; N space ; B 0 0 0 0 ;
+EndCharMetrics
+StartKernData
+StartKernPairs 3
+KPX F O -51
+
+KPX P O 51
+
+KPX T A -25
+
+EndKernPairs
+EndKernData
+EndFontMetrics
+ \ No newline at end of file
diff --git a/fonts/mflogo/ps-type1/hoekwater/afm/logod10.afm b/fonts/mflogo/ps-type1/hoekwater/afm/logod10.afm
new file mode 100644
index 0000000000..d797f8688f
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/afm/logod10.afm
@@ -0,0 +1,37 @@
+StartFontMetrics 2.0
+FontName LOGOD10
+FullName LOGOD10
+FamilyName LOGOD10
+FontBBox 0 -14 771 613
+Weight Demi
+Notice Copyright (c) Taco Hoekwater, 1998. All rights reserved.
+IsFixedPitch false
+ItalicAngle -12.00
+XHeight 0
+CapHeight 600
+UnderlinePosition -100
+UnderlineThickness 50
+StdHW 60
+StdVW 66
+FontBBox 0 -14 884 611
+EncodingScheme FontSpecific
+StartCharMetrics 10
+C 32 ; WX 280 ; N space ; B 0 0 0 0 ;
+C 65 ; WX 700 ; N A ; B 67 -11 633 611 ;
+C 69 ; WX 653 ; N E ; B 69 0 595 600 ;
+C 70 ; WX 653 ; N F ; B 69 -11 595 600 ;
+C 77 ; WX 840 ; N M ; B 69 -11 771 611 ;
+C 78 ; WX 700 ; N N ; B 69 -11 631 611 ;
+C 79 ; WX 700 ; N O ; B 20 -14 680 613 ;
+C 80 ; WX 653 ; N P ; B 69 -11 619 603 ;
+C 83 ; WX 653 ; N S ; B 67 -2 619 600 ;
+C 84 ; WX 607 ; N T ; B 0 -11 607 600 ;
+EndCharMetrics
+StartKernData
+StartKernPairs 3
+KPX F O -47
+KPX P O 47
+KPX T A -23
+EndKernPairs
+EndKernData
+EndFontMetrics
diff --git a/fonts/mflogo/ps-type1/hoekwater/afm/logosl10.afm b/fonts/mflogo/ps-type1/hoekwater/afm/logosl10.afm
new file mode 100644
index 0000000000..2ffbaced59
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/afm/logosl10.afm
@@ -0,0 +1,44 @@
+StartFontMetrics 2.0
+Comment Panose 2 0 0 6 2 0 0 2 0 0
+FullName LOGOSL10
+FontName LOGOSL10
+FamilyName LOGOSL10
+Weight Medium
+Notice Copyright (c) Taco Hoekwater, 1998. All rights reserved.
+Version 001.002
+IsFixedPitch false
+ItalicAngle -12.00
+FontBBox 0 -11 867 611
+Ascender 700
+Descender -200
+XHeight 0
+CapHeight 600
+UnderlinePosition -100
+UnderlineThickness 50
+StdHW 60
+StdVW 66
+EncodingScheme FontSpecific
+StartCharMetrics 10
+C 69 ; WX 622 ; N E ; B 85 0 698 600 ;
+C 70 ; WX 622 ; N F ; B 83 -11 698 600 ;
+C 77 ; WX 800 ; N M ; B 83 -11 867 611 ;
+C 78 ; WX 667 ; N N ; B 83 -11 734 611 ;
+C 79 ; WX 667 ; N O ; B 80 -11 728 611 ;
+C 80 ; WX 622 ; N P ; B 83 -11 698 600 ;
+C 83 ; WX 622 ; N S ; B 85 0 687 600 ;
+C 84 ; WX 578 ; N T ; B 142 -11 720 600 ;
+C 65 ; WX 667 ; N A ; B 83 -11 686 611 ;
+C 32 ; WX 267 ; N space ; B 0 0 0 0 ;
+EndCharMetrics
+StartKernData
+StartKernPairs 3
+KPX F O -44
+
+KPX P O 44
+
+KPX T A -22
+
+EndKernPairs
+EndKernData
+EndFontMetrics
+ \ No newline at end of file
diff --git a/fonts/mflogo/ps-type1/hoekwater/afm/logosl8.afm b/fonts/mflogo/ps-type1/hoekwater/afm/logosl8.afm
new file mode 100644
index 0000000000..5bc4d27139
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/afm/logosl8.afm
@@ -0,0 +1,38 @@
+StartFontMetrics 2.0
+FontName LOGOSL8
+FullName LOGOSL8
+FamilyName LOGOSL8
+Comment UniqueID 0
+Weight Medium
+Notice Copyright (c) Taco Hoekwater, 1998. All rights reserved.
+IsFixedPitch false
+ItalicAngle -12.00
+FontBBox 0 -11 867 611
+XHeight 0
+CapHeight 600
+UnderlinePosition -100
+UnderlineThickness 50
+StdHW 60
+StdVW 66
+FontBBox 0 -14 910 611
+EncodingScheme FontSpecific
+StartCharMetrics 10
+C 32 ; WX 323 ; N space ; B 0 0 0 0 ;
+C 65 ; WX 733 ; N A ; B 110 -10 745 610 ;
+C 69 ; WX 688 ; N E ; B 113 0 735 600 ;
+C 70 ; WX 688 ; N F ; B 110 -10 735 600 ;
+C 77 ; WX 870 ; N M ; B 110 -10 910 610 ;
+C 78 ; WX 733 ; N N ; B 110 -10 773 610 ;
+C 79 ; WX 733 ; N O ; B 86 -14 791 611 ;
+C 80 ; WX 688 ; N P ; B 110 -10 764 603 ;
+C 83 ; WX 688 ; N S ; B 113 -1 725 600 ;
+C 84 ; WX 642 ; N T ; B 143 -10 785 600 ;
+EndCharMetrics
+StartKernData
+StartKernPairs 3
+KPX F O -46
+KPX P O 46
+KPX T A -23
+EndKernPairs
+EndKernData
+EndFontMetrics
diff --git a/fonts/mflogo/ps-type1/hoekwater/afm/logosl9.afm b/fonts/mflogo/ps-type1/hoekwater/afm/logosl9.afm
new file mode 100644
index 0000000000..6261b46a7b
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/afm/logosl9.afm
@@ -0,0 +1,37 @@
+StartFontMetrics 2.0
+FontName LOGOSL9
+FullName LOGOSL9
+FamilyName LOGOSL9
+Weight Medium
+Notice Copyright (c) Taco Hoekwater, 1998. All rights reserved.
+IsFixedPitch false
+ItalicAngle -12.00
+FontBBox 0 -11 867 611
+XHeight 0
+CapHeight 600
+UnderlinePosition -100
+UnderlineThickness 50
+StdHW 60
+StdVW 66
+FontBBox 0 -14 884 611
+EncodingScheme FontSpecific
+StartCharMetrics 10
+C 32 ; WX 287 ; N space ; B 0 0 0 0 ;
+C 65 ; WX 692 ; N A ; B 93 -11 721 611 ;
+C 69 ; WX 647 ; N E ; B 95 0 713 600 ;
+C 70 ; WX 647 ; N F ; B 93 -11 713 600 ;
+C 77 ; WX 827 ; N M ; B 93 -11 884 611 ;
+C 78 ; WX 692 ; N N ; B 93 -11 749 611 ;
+C 79 ; WX 692 ; N O ; B 68 -14 767 611 ;
+C 80 ; WX 647 ; N P ; B 93 -11 733 603 ;
+C 83 ; WX 647 ; N S ; B 95 -1 702 600 ;
+C 84 ; WX 602 ; N T ; B 142 -11 744 600 ;
+EndCharMetrics
+StartKernData
+StartKernPairs 3
+KPX F O -45
+KPX P O 45
+KPX T A -22
+EndKernPairs
+EndKernData
+EndFontMetrics
diff --git a/fonts/mflogo/ps-type1/hoekwater/logo10.pfb b/fonts/mflogo/ps-type1/hoekwater/logo10.pfb
new file mode 100644
index 0000000000..9bb42aaef3
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/logo10.pfb
Binary files differ
diff --git a/fonts/mflogo/ps-type1/hoekwater/logo8.pfb b/fonts/mflogo/ps-type1/hoekwater/logo8.pfb
new file mode 100644
index 0000000000..89fdddd3da
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/logo8.pfb
Binary files differ
diff --git a/fonts/mflogo/ps-type1/hoekwater/logo9.pfb b/fonts/mflogo/ps-type1/hoekwater/logo9.pfb
new file mode 100644
index 0000000000..0b41fa015a
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/logo9.pfb
Binary files differ
diff --git a/fonts/mflogo/ps-type1/hoekwater/logobf10.pfb b/fonts/mflogo/ps-type1/hoekwater/logobf10.pfb
new file mode 100644
index 0000000000..3e64ef3487
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/logobf10.pfb
Binary files differ
diff --git a/fonts/mflogo/ps-type1/hoekwater/logod10.pfb b/fonts/mflogo/ps-type1/hoekwater/logod10.pfb
new file mode 100644
index 0000000000..ec701f48e1
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/logod10.pfb
Binary files differ
diff --git a/fonts/mflogo/ps-type1/hoekwater/logosl10.pfb b/fonts/mflogo/ps-type1/hoekwater/logosl10.pfb
new file mode 100644
index 0000000000..13ab0a37d1
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/logosl10.pfb
Binary files differ
diff --git a/fonts/mflogo/ps-type1/hoekwater/logosl8.pfb b/fonts/mflogo/ps-type1/hoekwater/logosl8.pfb
new file mode 100644
index 0000000000..247a73bef1
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/logosl8.pfb
Binary files differ
diff --git a/fonts/mflogo/ps-type1/hoekwater/logosl9.pfb b/fonts/mflogo/ps-type1/hoekwater/logosl9.pfb
new file mode 100644
index 0000000000..321c0ca322
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/logosl9.pfb
Binary files differ
diff --git a/fonts/mflogo/ps-type1/hoekwater/mflogo.map b/fonts/mflogo/ps-type1/hoekwater/mflogo.map
new file mode 100644
index 0000000000..f372115bcd
--- /dev/null
+++ b/fonts/mflogo/ps-type1/hoekwater/mflogo.map
@@ -0,0 +1,9 @@
+% Taco Hoekwater, public domain.
+logo10 LOGO10 <logo10.pfb
+logod10 LOGOD10 <logod10.pfb
+logobf10 LOGOBF10 <logobf10.pfb
+logo9 LOGO9 <logo9.pfb
+logo8 LOGO8 <logo8.pfb
+logosl10 LOGOSL10 <logosl10.pfb
+logosl9 LOGOSL9 <logosl9.pfb
+logosl8 LOGOSL8 <logosl8.pfb
diff --git a/fonts/mflogo/tfm/logo10.tfm b/fonts/mflogo/tfm/logo10.tfm
new file mode 100644
index 0000000000..67e7898d32
--- /dev/null
+++ b/fonts/mflogo/tfm/logo10.tfm
Binary files differ
diff --git a/fonts/mflogo/tfm/logo8.tfm b/fonts/mflogo/tfm/logo8.tfm
new file mode 100644
index 0000000000..6778516750
--- /dev/null
+++ b/fonts/mflogo/tfm/logo8.tfm
Binary files differ
diff --git a/fonts/mflogo/tfm/logo9.tfm b/fonts/mflogo/tfm/logo9.tfm
new file mode 100644
index 0000000000..071f935b64
--- /dev/null
+++ b/fonts/mflogo/tfm/logo9.tfm
Binary files differ
diff --git a/fonts/mflogo/tfm/logobf10.tfm b/fonts/mflogo/tfm/logobf10.tfm
new file mode 100644
index 0000000000..eafccbb845
--- /dev/null
+++ b/fonts/mflogo/tfm/logobf10.tfm
Binary files differ
diff --git a/fonts/mflogo/tfm/logod10.tfm b/fonts/mflogo/tfm/logod10.tfm
new file mode 100644
index 0000000000..86ad1717fb
--- /dev/null
+++ b/fonts/mflogo/tfm/logod10.tfm
Binary files differ
diff --git a/fonts/mflogo/tfm/logosl10.tfm b/fonts/mflogo/tfm/logosl10.tfm
new file mode 100644
index 0000000000..f7a64db6b1
--- /dev/null
+++ b/fonts/mflogo/tfm/logosl10.tfm
Binary files differ
diff --git a/fonts/mflogo/tfm/logosl8.tfm b/fonts/mflogo/tfm/logosl8.tfm
new file mode 100644
index 0000000000..387d53df61
--- /dev/null
+++ b/fonts/mflogo/tfm/logosl8.tfm
Binary files differ
diff --git a/fonts/mflogo/tfm/logosl9.tfm b/fonts/mflogo/tfm/logosl9.tfm
new file mode 100644
index 0000000000..a1d8c72383
--- /dev/null
+++ b/fonts/mflogo/tfm/logosl9.tfm
Binary files differ