home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Tex / TeX_info.zoo / fonts_mf.txt < prev    next >
Text File  |  1991-12-11  |  31KB  |  849 lines

  1. Subject: Complete list of all metafont-format fonts in the world
  2. From: lee@sq.sq.com (Liam R. E. Quin)
  3. Date: 10 Dec 91 04:39:10 GMT
  4. Organization: SoftQuad Inc., Toronto, Canada
  5.  
  6.  
  7. Summary of Metafont Fonts Available (Approximate Digest Format)
  8.  
  9. This list includes all known fonts available in metafont format, whether
  10. public domain or not.  Archive sites for ftp are listed where known.
  11. There is also a BITNET archive at LISTSERV@UBVM.CC.BUFFALO.EDU.
  12.  
  13. This list is formatted as a sort-of-digest so you can skip through
  14. it easily (e.g. use control-G in rn).
  15.  
  16. I also included some notes on how to use the fonts, in the (probably vain)
  17. hope of avoiding a deluge of questions on the net.  Note that I cannot
  18. give instructions for specific packages, and I cannot answer questions
  19. about specific printers.  I have included some information about TeX and
  20. troff, but I can't go into more much more detail over the net (i.e. I am
  21. not offering to provide detailed technical support).
  22.  
  23. Contents:
  24.     About Metafont
  25.     What you need in order to use the fonts
  26.     How to use Metafont fonts with TeX
  27.     How to use Metafont fonts with Troff
  28.     Where to get bitmap versions of the fonts
  29.     Converting between font formats
  30.     Getting fonts by FTP and Mail
  31.     Fonts: 
  32.     Fonts: AMS (see also under Euler)
  33.     Fonts: APL (A Programming Language)
  34.     Fonts: Arabic
  35.     Fonts: Astrological
  36.     Fonts: Babel -- language support
  37.     Fonts: Bar Code
  38.     Fonts: Blackboard Bold
  39.     Fonts: Canon Printer Format
  40.     Fonts: Chess
  41.     Fonts: Chinese
  42.     Fonts: Cirth
  43.     Fonts: Committee
  44.     Fonts: Computer Modern
  45.     Fonts: Concrete
  46.     Fonts: Cyrillic
  47.     Fonts: Duerer
  48.     Fonts: Devanagari
  49.     Fonts: Dingbats
  50.     Fonts: Euler
  51.     Fonts: Fraktur [see: Babel/German, Euler]
  52.     Fonts: German  [see: Babel/German, Euler]
  53.     Fonts: Godel
  54.     Fonts: Gothic [see: Babel, Euler]
  55.     Fonts: Greek
  56.     Fonts: Hebrew
  57.     Fonts: Hershey
  58.     Fonts: Helvetica
  59.     Fonts: Hewlett Packard LaserJet Format
  60.     Fonts: Hindi
  61.     Fonts: International Phonetic Alphabet
  62.     Fonts: Japanese
  63.     Fonts: Korean
  64.     Fonts: Malvern
  65.     Fonts: Music
  66.     Fonts: OCR (Optical Character Recognition)
  67.     Fonts: Old English
  68.     Fonts: Oriya
  69.     Fonts: Pandora
  70.     Fonts: Pica
  71.     Fonts: Pointing Hands
  72.     Fonts: Punk
  73.     Fonts: Sanskrit (see Fonts: Devanagari)
  74.     Fonts: Sauter
  75.     Fonts: Tamil
  76.     Fonts: Tengwar
  77.     Fonts: Thai
  78.     Fonts: Times
  79.     Fonts: Vietnamese
  80.     Fonts: Waldi Symbol Font
  81.  
  82.  
  83. Subject: About Metafont
  84.  
  85. Metafont is a programming language for describing fonts.  It was written
  86. by Donald Knuth and is documented in
  87.     Computers & Typesetting/C: The METAFONTbook
  88.     Knuth, Donald E.
  89.     Addison Wesley, 1986
  90.     ISBN 0-201-13445-4, or 0-201-13444-6 (soft cover)
  91.     Library access: Z250.8.M46K58, or 686.2'24, or 85-28675.
  92.  
  93. A font written in Metafont is actually a computer program which, when run,
  94. will generate a bitmap (`raster') for a given typeface at a given size,
  95. for some particular device.
  96.  
  97. Subject: What you need in order to use the fonts
  98.  
  99. You cannot print the metafont fonts directly (unless you want a listing of
  100. the program, that is).  Instead, you must generate a bitmap font and use
  101. that to print something.  If you have TeX or troff, the process for doing
  102. this is outlined below.  This is not meant to be compete documentation, 
  103. though, but simply enough to get you started.
  104. If you want to use a font generated by metafont on an HP LaserJet, for
  105. example, you must follow this general procedure:
  106. * Generate the bitmap font with Metafont.
  107.   This will produce a file called (for example) "myfont10.300gf".
  108. * Convert this to a pk format file -- the pk format is much more compact,
  109.   and is used by most software in preference to gf files.  You can use
  110.   gftopk (which comes with metafont, or in a package called mfware).
  111.     $ gftopk myfont10.300gf
  112.     $
  113.   This produces myfont10.300pk
  114. * Convert the pk-format font into one suitable for your printer.  For an
  115.   HP, there are several utilities -- the one I use is called pk2sfp:
  116.     $ pk2sfp myfont10.300pk > myfont10.300sfp
  117.   You will have to find this program.  If you are using TeX you do not need
  118.   it, though -- see "Converting between font formats" below.
  119. * Download the font to the printer.  You will need to do more than simply
  120.   send the file to the printer.  For example, on the HP you must send an
  121.   escape sequence like ESC*c100D to tell the printer there's a font coming,
  122.   and that it's going to be font number 100.  You then send the font, and
  123.   then in the rest of the job say something like ESC*c100ESC*c4FESC(100X
  124.   to tell the printer you've finished, and to start using the font.  (ESC
  125.   in these examples stands for the ASCII Escape, chracter 033 octal, 27 in
  126.   decimal).  All of this must be in the same print job.
  127.  
  128. Doing this without going insane involves setting up macros or shell-scripts
  129. to automate it for you. 
  130.  
  131.  
  132. Subject: How to use Metafont fonts with TeX
  133.  
  134. In addition to generating a `gf' file, metafont will also generate a '.tfm'
  135. file.  You will need to put the tfm file into your TeX font directory --
  136. for example, /usr/local/tex/fonts.  You will need to put either the gf or
  137. the pk file there too -- probably the pk file.  Some dvi drivers need the
  138. font to be listed in a description file, too -- the name and location of
  139. this seems to vary wildly from site to site, but FONTDESC is not unlikely.
  140. Chris Torek's `mctex' package includes some drivers that need this.
  141.  
  142. For testing, you might be able to say something like
  143.   $ TEXFONTS="/users/lee/fonts:/usr/local/lib/tex/fonts"; export TEXFONTS
  144. to get TeX to look in more than one directory -- see your local TeX guide.
  145.  
  146. When you have installed the font, you can use it from TeX directly in the
  147. usual way.  For most fonts, the filename is the same as the font name, so,
  148. for example, ccr10.300pk contains the bitmaps for a font called ccr at size
  149. 10pt.  You can look at the Metafont source for a given font to determine
  150. the name of the font, and you might also be able to cheat by editing the
  151. font description file FONTDESC.
  152. Using other fonts with LaTeX generally requires more work.
  153.  
  154.  
  155. Subject: How to use Metafont fonts with Troff
  156.  
  157. If, when you run troff, you get the message `typesetter busy', you have the
  158. original Ossanna-troff, also called otroff.  Chris Lewis has a package which
  159. will let you use TeX fonts with troff -- it's called psroff, and
  160. comes with documentation.
  161. ftp: gatekeeper.dec.com (16.1.0.2) pub/misc/psroff-3.0
  162. ftp: ftp.cs.toronto.edu [128.100.1.105] pub/psroff-3.0/*
  163.  
  164. If, when you run troff, you get something like this:
  165.     x T 300
  166.     x res 300 1 1
  167. you have ditroff.  This is sometimes called titroff or psroff.  In this
  168. case, you will probably need to do the following:
  169. 1) convert the font to your printer's format
  170. 2) generate a width table for the font
  171. 3) add the font to the DESC file for the appropriate device
  172. 4) arrange for troff to download the font
  173. 5) tell troff about the font by running `makedev DESC' in the right place.
  174.  
  175. If, when you run troff, you get something like this:
  176.     X hp(SCM)(CM)(AF)(AD) 300 1 1
  177.     Y P default letter 2550 3300 0 0 90 90 2460 3210
  178. you have sqtroff, change (4) onwards to:
  179. 4) put the font in the appropriate raster directory
  180. 5) tell sqtroff about the font by running `sqmakedev DESC' or `sqinstall'.
  181.  
  182. In each case, you should be able to get help from your vendor.
  183.  
  184. Note that Chris Lewis' psroff package has software to make width tables for
  185. troff from pk files.
  186.  
  187.  
  188. Subject: Converting between font formats
  189.  
  190. Conversions to and from pbm and pk format were posted to comp.text.tex
  191. and to alt.sources on the 9th of August, 1990 by Angus Duggan
  192. (ajcd@cs.ed.ac.uk).  The program is pbmtopk, and there are also at least
  193. two patches.
  194.  
  195. Chris Lewis' psroff package includes a program to go from pk both to the
  196. HP LaserJet and to PostScript.
  197.  
  198. John McClain (ophelp@tamvenus.bitnet) has some conversion programs for
  199. various graphics formats to/and from pk files.
  200.  
  201. A PC program, CAPTURE, turns HPGL files into PK format, US$130 from
  202.     Micro Programs Inc., 251 Jackson Ave., Syosset, NY 11791 U.S.A.
  203.  
  204. Metaplot can take pen-plotter files and produce metafont files; contact
  205.     wilcox@cis.ohio-state.edu
  206.  
  207. Kinch Cmputer Company sell .pk fonts derived from PostScript fonts.
  208.     Kinch Computer Co., 501 S. Meadow St.Ithaca, NY  14850 U.S.A.
  209.     telephone: +1 607 273 0222; fax: +1 607 273 0484
  210.  
  211.  
  212.  
  213. Subject: Where to get bitmap versions of the fonts
  214.  
  215. There are archives containing the bitmaps of many of these fonts at various
  216. sizes and resolutions.  The fonts must have been generated for the correct
  217. print engine: e.g. write-white or write-black.  The archives generally hold
  218. only the sizes used by TeX.  These are `magstep' sizes, and are not exact
  219. point sizes.  It is probably better to generate them from the Metafont
  220. sources yourself if you can.
  221.  
  222. The best place to look for raster fonts is almost certainly
  223.     mims-iris.waterloo.edu (129.97.129.116)
  224. This probably has all the HP fonts in the world....  some others are:
  225.     ctrsci.math.utah.edu (128.110.198.1)
  226.     science.utah.edu (128.110.192.2)
  227.     ymir.claremont.edu (134.173.4.23)
  228.  
  229. The occasional posting of ftp sites to comp.misc and comp.archives lists
  230. these and several other sites.
  231.  
  232.  
  233. Getting fonts by FTP and Mail
  234.  
  235. If you are using ftp, you will need either the name of the host or
  236. the Internet number.  For example, to connect to ymir, listed as
  237.     ftp: ymir.claremont.edu [134.173.4.23]
  238. you will need to type something like
  239.     ftp ymir.claremont.edu
  240. If that doesn't work, try using the number:
  241.     ftp 134.173.4.23
  242. If that doesn't work, on Unix systems you can use nslookup (it's usually
  243. /usr/etc/nslookup) to find the host number -- it might have changed.
  244. Type the entire host name, and after a few seconds nslookup will give
  245. you the address.
  246.  
  247. Once you have connected, you will need to go to the appropriate directory,
  248. lists its contents, and retrieve the files.
  249.  
  250. Most of the machines listed here run Unix, and you use "ls" and "cd" to
  251. list files and to change directories.  Ymir runs VMS, and you will have
  252. to put square brackets around directory names, like [this].
  253.  
  254. Remember that although Metafont sources are text files, pk fonts are not
  255. ASCII, and you will have to use binary mode for them.  In general, use
  256. text mode for README files and *.mf files, and binary mode for other
  257. font files.  Files ending in .Z are compressed binary files -- you will
  258. need to use binary mode, and then uncompress the files when you get them.
  259.  
  260.  
  261. You can get files from ymir by sending mail messages to
  262. mailserv@ymir.claremont.edu
  263.  
  264. For example,
  265.     send [tex.mf.misc]cmapl10.mf
  266. will get the file cmapl10.mf from the directory "tex.mf.misc".
  267. You can't get binary files in this way.
  268.  
  269. There is an ftp-by-mail BITNET service, BITFTP, for BITNET users.
  270.  
  271. Before getting large files by mail, please remember to get permission from
  272. all intervening sites.  Ask your site administrator, who can send mail to
  273. Postmaster at each site on the way if necessary.
  274.  
  275.  
  276. Subject: Fonts: AMS (see also under Euler)
  277.  
  278. The American Mathematical Society has adopted TeX, and has had some fonts
  279. designed especially by Herman Zapf.  These are known as the Euler fonts,
  280. and are described below.  The Metafont sources are now available by ftp.
  281.  
  282. NOTE that you should build these using virmf, or at least with a version
  283. of Matafont that does not have cmbase pre-loaded.  You may also get
  284. errors reported when building some of the smaller sizes -- simply press
  285. return.
  286.  
  287. There are
  288. * AMS Euler -- a calligraphic font.  This is not suitable as it stands for
  289.   text use in TeX, because it has a non-standard encoding.
  290.  
  291. * AMS extra maths symbols
  292. * AMS computer modern extensions
  293. * AMS Cyrillic (this is the same as University of Washington Cyrillic)
  294.  
  295. There is also some documentation.
  296.  
  297. You can get them from the AMS directly or from ymir:
  298. ftp: e-math.ams.com [130.44.1.100] /ams/amsfonts/sources
  299. ftp: ymir.claremont.edu (134.173.4.23)
  300. ftp: rusinfo.rus.uni-stuttgart.de [], compressed tar in soft/tex/ams/
  301. Any (infrequent) changes to these fonts happen on e-math first.
  302.  
  303.  
  304. Subject: Fonts: Arabic
  305.  
  306. Prof. Klaus Lagally's <lagally@informatik.uni-stuttgart.de> ArabTeX is
  307. a LaTeX extension for high-quality arabic writing.
  308.  
  309. ftp: ifi.informatik.uni-stuttgart.de [129.69.211.1]
  310.  
  311.  
  312. Subject: Fonts: Astrological
  313.  
  314. JANET: uk.ac.aston.tex [tex-archive.fonts.planets]
  315. mail: LISTSERV@DHDURZ1.BITNET with message GET PLANETS ZOOUUE MFSOURCE
  316.  
  317.  
  318. Subject: Fonts: APL (A Programming Language)
  319.  
  320. ftp: power.eee.ndsu.nodak.edu [134.129.123.1] apl-tex-font/27-Jul-90
  321.  
  322. ftp: ymir.claremont.edu (134.173.4.23): cd SOFTWARE:[anonymous.tex.mf.misc]
  323. ftp: (the file is cmapl10.mf).  Associated macros and documentation are in
  324. ftp: SOFTWARE:[anonymous:tex:periodicals.tugboat]  and also
  325. ftp: [anonymous.tex.inputs.plain-contrib] in files apldef.tex, aplstyle.tex
  326. ftp: and aplverb.tex.
  327.  
  328.  
  329.  
  330. ftp: power.eee.ndsu.nodak.edu (134.129.123.1) apl-tex-font/27-Jul-90
  331.  
  332.  
  333.  
  334. Subject: Fonts: Babel -- language support
  335.  
  336. The Babel archive at ymir.claremont.edu contains:
  337. * German Fonts:
  338.   Yannis Haralambous' Gothic Fonts (described in TUGBoat 12.1) are in
  339.   the following directories:
  340. ftp: ymir.claremont.edu (134.173.4.23):
  341. ftp: cd [anonymous.tex.babel.german.fonts-yfrak]
  342. ftp: cd [anonymous.tex.babel.german.fonts-ygoth]
  343. ftp: cd [anonymous.tex.babel.german.fonts-yinit]
  344. ftp: cd [anonymous.tex.babel.german.fonts-yswab]
  345.  
  346. * Greek Fonts:
  347.   Brian Hamilton Kelly's cmgr family
  348.   Sylvio Levy's gr family [modern and classical]
  349.   Yannis Haramboulos' rgr family
  350.  
  351. * Hebrew fonts:
  352.   REDIS (a thin-looking sans serif)
  353.   burkis (coming in January??)
  354.  
  355. * Icelandic
  356.   Icelandic Modern (this is Computer Modern with extensions)
  357.  
  358. * Japanese
  359.   61 Japanese fonts (I'm told)
  360.  
  361. * Russian (Cyrillic)
  362.   IFVE's cmc family
  363.   U Washington's wncyr family
  364.   Bashkiren/Mongolian (not sure if this is there yet)
  365.  
  366. * Turkish
  367.   Turkish Modern (this is Computer Modern with extensions)
  368.  
  369. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.babel]
  370.  
  371.  
  372. Subject: Fonts: Bar Code
  373.  
  374. Dimitri Vulis's barcode font
  375. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf]
  376.  
  377.  
  378. Subject: Fonts: Blackboard Bold
  379.  
  380. Used for Real Numbers (R), Natural, Complex, etc.
  381. ftp: labrea.stanford.edu pub/tex/fonts/bbb*.mf
  382.  
  383. Subject: Fonts: Canon Printer Format
  384.  
  385. ftp: sun.soe.clarkson.edu [128.153.12.3]
  386.  
  387.  
  388. Subject: Fonts: Chess
  389.  
  390. ftp: sol.cs.ruu.nl [131.211.80.5] pub/TEX/chess.tar.Z
  391. by Piet Tutelaers; described in TUGboat.
  392.  
  393. Some chess typesetting macros were posted to comp.tex.tex on July 31st
  394. 1990.  The chess fonts are available for ftp from ymir.
  395.  
  396. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.misc]
  397.  
  398.  
  399. Subject: Fonts: Chinese
  400.  
  401. Poor Man's TeX generates Chinese Metafont characters
  402. ftp: blackbox.hacc.washington.edu (128.95.200.1): cd pub/poorman (??)
  403.  
  404. Poor Man's TeX Chinese has been extended to support Big5 format;
  405. pre-generated 300dpi Simplified and Traditional GB fonts are available for ftp.
  406.  
  407. ftp: crl.nmsu.edu (128.123.1.14); pub/misc/pmtex-1.1.tar.Z
  408. ftp: crl.nmsu.edu (128.123.1.14); pub/chinese/fonts/pmt-{300dpi,tfm}
  409.  
  410. ChTeX is a set of macros and fonts for typesetting Chinese under TeX.
  411. It only supports PostScript, and requires a modivied dvi2ps.  You write
  412. your article with PinYin.
  413. Included are source, fonts, VMS binary for 5.2, DOS binary, etc.  There is
  414. also support for X-Windows; contact mliesher@nmsu.edu (Mark Leisher).
  415.  
  416. ftp: crl.nmsu.edu (128.123.1.14); pub/chinese/{dvi2ps-3.2,ChTeX-1.1}.tar.Z
  417. ftp neon.stanford.edu (36.28.0.92); ChTeX.tar.Z
  418.  
  419. Subject: Fonts: Cirth
  420.  
  421. This is a Tolkien font based on Anglo-Saxon `Futharc' runes.
  422. Julian Bradfield has versions of both Tengwar [q.v.] and Cirth runes.
  423.  
  424. ftp: ftp.dcs.ed.ac.uk (129.215.160.150) export/jcb/Elvish.tar.Z
  425. ftp: (or the individual files instead in the same directory)
  426. Janet-niftp: uk.ac.ed.lfcs user=ftp pass=user80 export/jcb/Elvish.tar.Z
  427. ftp: They are also available for ftp on ymir and aston.
  428.  
  429.  
  430. Subject: Fonts: Committee
  431.  
  432. This was produced during a workshop tutorial given by Donald Knuth.
  433. This is said (by Don Hosek, whom I trust in such things) to be hard-wired
  434. for the APS typesetter...  It is described in Tugboat Vol. 5 No. 2 (Nov. 84).
  435.  
  436. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf.misc]
  437. ftp: files are font1.mf and font1base.mf
  438.  
  439.  
  440. Subject: Fonts: Computer Modern
  441.  
  442. Computer Modern is Donald Knuth's font family used for his later
  443. `Art of Computer Programming' books.  It contains
  444.     cmr -- computer modern roman
  445.     cmmi -- computer modern maths italic
  446.     cmti -- computer modern text italic
  447.     cmb -- computer modern bold
  448.     cmss -- computer modern sans serif
  449.     Cmtt -- computer modern typewriter
  450.     cmvtt -- computer modern variable-spaced typewriter
  451. and several variations on each of the above (e.g. bold extended...).
  452. There are also some experimental fonts, such as cmff, a `funny' font, and
  453. cmfib, a font based on Fibonacci numbers.
  454.  
  455. These are all included in a standard TeX distribution, although I only know
  456. of one site archiving the metafont files seperately.  The official TeX
  457. distribution site is labrea.stanford.edu:
  458.  
  459. ftp: labrea.stanford.edu [36.8.0.47] cd pub/tex/cm
  460. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf.cm.standard]
  461.  
  462. Many TeX ftp archive sites also give access to the bitmaps (pk files),
  463. although you usually have to get them all at once.
  464.  
  465. There is also a reparameterised version of CM by John Sauter, which makes
  466. it easy to generate fonts at desired sizes-- this is especially useful for
  467. non-TeX users.
  468.  
  469. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf.cm.sauter]
  470. See also: Babel, Sauter
  471.  
  472. There are some more Computer Modern variants stored at ymir; these
  473. include parameters for generating cm fonts at sizes 14, 18, 24 and 36pt.
  474. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf.cm.variants]
  475.  
  476. There is also a Pica typewriter font -- italic and bold come out with
  477. straight and wavy underlines (respectively), however.  This is in
  478. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf.cm.pica]
  479.  
  480. Versions of these fonts suitable for use with an X Windows previewer (xtex
  481. and SeeTeX) are available from
  482. ftp: foobar.colorado.edu pub/SeeTeX
  483.  
  484. A variant of CMTT with 8-bit characters for the Mac is available for US$20
  485. from yannis@frcitl81.BITNET -- this is called MACTT.  Mf source is included.
  486.  
  487. Subject: Fonts: Concrete
  488.  
  489. This font was designed for Donald Knuth's Concrete Mathematics book.
  490. It looks a little like a cross between American Typewriter and Computer
  491. Modern Roman.  There are Roman and Italic faces.
  492.  
  493. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf]
  494.  
  495.  
  496. Subject: Fonts: Cyrillic
  497.  
  498. There are several Cyrillic (Russion-Alphabet) fonts:
  499.     Tom Ridgeway's Cyrillic fonts
  500.     WN-Cyrillic
  501.     IFVE (which I'm told has better letterforms than WN but only
  502.     covers Russion)
  503.  
  504. ftp: june.cs.washington.edu (128.95.1.4)
  505. ftp: ymir.claremont.edu (134.173.4.23)
  506. [BITNET: LISTSERV@UBVM.CC.BUFFALO.EDU]
  507.  
  508. There is a mailing list, rustex-l, for discussion of typesetting
  509. Cyrilic-based languages.  To subscribe, send mail to listserv@ubvm.bitnet
  510. containing the text
  511.  SUBSCRIBE RUSTEX-L <your name here>
  512. or send mail to Dimitri Vulis, DLV%CUNYVMS1.BITNET@cunyvm.cuny.edu
  513.  
  514. See also Fonts: Babel.
  515.  
  516.  
  517. Subject: Fonts: Duerer
  518.  
  519. Based on the 16th Century drawings of Albrecht Duerer -- see, for example,
  520. his ``The Painter's Manual'' published in Fac Simile by Abaris Books, and
  521. reprinted in part by Dover as `On the Just Formation of Letters'. 
  522. Hoenig's article was in TUGboat Vol 11 No. 14.
  523.  
  524. Upper case only.
  525. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf.duerer]
  526.  
  527.  
  528. Subject: Fonts: Devanagari
  529.  
  530. (this is a font for use with Sanskrit, Hindi, etc.)
  531. Created by Frans Velthuis in 1987/88 and is available from him
  532. (Velthuis%hgrrug5.earn@cunyvm.cunyvm.edu) for a small charge.
  533. Another address is "velthuis@hgrrug5.bitnet".
  534.     F.J. Velthuis,
  535.     Nyensteinheerd 267
  536.     9736 TV Groningen
  537.     The Netherlands
  538.  
  539. Also available as part of his Devanagari transliteration package:
  540. ftp: june.cs.washington.edu [128.95.1.4] tex/devnag.tar.Z, or devnag.zip
  541. ftp: ymir.claremont.edu: cd [anonymous.tex.babel.sanscrit.fonts-velthuis]
  542.  
  543. See Also: Fonts: Tamil
  544.  
  545.  
  546. Subject: Fonts: Dingbats
  547.  
  548. By Doug Henderson.
  549. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf]
  550. See Also: Washington Symbol Font
  551.  
  552.  
  553. Subject: Fonts: Euler
  554.  
  555. These were designed by Herman Zapf for the American Mathematical Society (the
  556. AMS).  The fonts are Fraktur, Script, Upright Italic, Math extension.
  557. (see TUGboat Vol.10, No. 1)
  558.  
  559. ftp: e-math.ams.com [130.44.1.100] /ams/amsfonts/sources
  560. ftp: ymir.claremont.edu (134.173.4.23)
  561.  
  562. See also: AMS; Babel/German
  563.  
  564.  
  565.  
  566. Subject: Fonts: Greek
  567.  
  568. Brian Hamilton Kelly's Greek font:
  569. ftp: xydeco.siemens.com (129.73.1.101) greek*
  570.  
  571. Sylvio Levy's Greek font:
  572. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.babel.greek.levy]
  573.  
  574. Also the Sylvio Levy `gr' greek family, for both Modern and Classical Greek.
  575. This includes roman, typewriter and bold, plus TeX macros.
  576.  
  577. Brian Hamilton Kelly's cmgr family
  578. Yannis Haramboulos' rgr family
  579.  
  580. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.babel.greek]
  581.  
  582. see also Babel...
  583.  
  584.  
  585. Subject: Fonts: Hebrew
  586.  
  587. There is a sans-serif Hebrew font called REDIS available from ymir.  It comes
  588. in three faces, including italic (slanting to the right, of course).
  589. Joel M. Hoffman's HCLASSIC (joel@wam.umd.edu) is also available from ymir,
  590. has serifs, and includes complete support for vowels.
  591.  
  592. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf]
  593. Jacques Goldman's Hebrew font is also available from ymir.
  594.  
  595.  
  596. Subject: Fonts: Helvetica
  597.  
  598. Produced by the Metafoundry and sold commercially.
  599. The Metafoundry is no longer extant, and the sources to these and their other
  600. fonts are not available.  Email me if you need more information; Rick Tobin
  601. is on the net, but the connection is unreliable.
  602.  
  603. Subject: Fonts: Hewlett Packard LaserJet Format
  604.  
  605. You will need to generate tfm files for these in order to use them with TeX,
  606. and also to arrange to download them to your printer...
  607. There are rather a lot of them.
  608.  
  609. ftp: mims-iris.waterloo.edu [129.97.129.116]
  610.  
  611.  
  612. Subject: Fonts: Hershey
  613.  
  614. The Hershey fonts were designed for use by plotters, and published in 1972.
  615. These fonts are of relatively low typographic quality, but are useful on
  616. devices with lower resolution.
  617.  
  618. ftp: cs.uoregon.edu [128.223.4.13]
  619. ftp: science.utah.edu [128.110.192.2]
  620.  
  621. There's a Hershey to MF converter at mims-iris.waterloo.edu called
  622. xhershey.  Ken Yap wrote it and `played around with a few novelty fonts
  623. before deciding the Hershey quality wasn't worth it,' he tells me,
  624.  
  625. Subject: Fonts: Hindi
  626.  
  627. See Also: Fonts: Devanagari, Sanskrit, Tamil
  628.  
  629. Subject: Fonts: International Phonetic Alphabet
  630.  
  631. Used by linguists, and also in some dictionaries.  It's designed to go
  632. with Computer Modern.  From WSU.
  633. The csli version has been extended by Emma Pease (emma@csli.stanford.edu) to
  634. include hooked D, B and K, and probably more.
  635.  
  636. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf]
  637. ftp: csli.stanford.edu (36.9.0.46): File: pub/TeXfile/Phonetic/Phonetic.tar.Z
  638.  
  639.  
  640. Subject: Fonts: Japanese
  641.  
  642. Japanese METAFONT code for 61 fonts is available from many sources, including:
  643.  
  644. ftp: SIMTEL (tenex) (192.88.110.20) tex/jemtex2.zip
  645. ftp: wuarchive (binary) (128.252.135.4) file mirrors/msdos/tex/jemtex2.zip
  646. ftp: utsun (binary) (133.11.11.11) file TeX/jemtex2.zip
  647. ftp: ymir.claremont.edu (134.173.4.23) file tex/babel/japanese/jemtex2.zip
  648.  
  649. Pregenerated Kanji fonts at 300dpi are available --
  650. ftp: crl.nmsu.edu (128.123.1.14); pub/japanese/fonts/pmt-{tfm,300dpi}/*
  651. See Also: Fonts, Chinese
  652.  
  653. Subject: Fonts: Korean
  654.  
  655. Poor Man's TeX (see under Fonts: Chinese) has been extended to support Hangul.
  656. Pregenerated fonts only are available:
  657. ftp: crl.nmsu.edu (128.123.1.14); pub/korean/pmtex-korean-fonts.tar.Z
  658.  
  659. See Also: Fonts, Chinese
  660.  
  661. Subject: Fonts: Malvern
  662.  
  663. An experimental sans-serif font by Damian Cugley (Damian.Cugley@prg.ox.ac.uk).
  664. There is also a program "mfjob" that runs metafont to generate a font, and
  665. you may need this in order to generate Malvern.  I wasn't able to get it to
  666. work, but there is a newer version now that I haven't had time to try.
  667.  
  668. mail: Send a message "help" or "index tex" to archive-server@prg.ox.ac.uk
  669.  
  670.  
  671.  
  672. Subject: Fonts: Music
  673.  
  674. MuTeX is a basic music package for TeX.  It seems to be the same as mtex,
  675. but with documentation in English rather than (or as well as) German.
  676.  
  677. ftp: stolaf.edu [130.71.128.1] /pub/MuTeX.tar.Z /pub/MuTeX_doc.Z
  678. ftp: suned.zoo.cs.yale.edu [128.36.21]
  679. ftp: cs.ubc.edu [128.189.97.5] src/MuTeX/MuTeX.tar.Z (slow)
  680. ftp: wuarchive.wustl.edu: /mirrors/msdos/tex/mutex.arc
  681. ftp: ymir.claremont.edu [134.173.4.23]: cd [anonymous.tex.musix.mutex]
  682. ftp: ymir.claremont.edu [134.173.4.23]: cd [anonymous.tex.music.musictex]
  683.  
  684. In Europe,
  685. ftp: sol.cs.ruu.nl [131.211.80.5] in subdirectory pub/TEX
  686. ftp: mtex.tar.Z (sources, including metafont sources and documentation)
  687. ftp: mtexfonts.tar.Z (300dpi pk files)
  688. These are also available in Europe by mail-server.  Send mail to
  689. mail-server@cs.ruu.nl with HELP in the subject and the body and probably
  690. the .signature as well :-)
  691.  
  692. MUSICTEX is another package with some more fonts, but French documentation
  693. ftp: 130.84.128.100 username-MUSICTEX password=ANY
  694.  
  695. This may or may not be the same as MusicTeX:
  696. ftp: qed.rice.edu [128.42.4.38] pub/musictex.tar.Z
  697.  
  698.  
  699. Subject: Fonts: OCR (Optical Character Recognition)
  700.  
  701. OCR A (this is not the font for printingon cheques)
  702. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf]
  703.  
  704.  
  705. Subject: Fonts: Old English
  706.  
  707. Note On Terminology:
  708.     Old English is a language spoken by the Anglo-Saxons in Britain up
  709.     until the first half or so of the 12th century.  It is used to refer
  710.     to fonts used for setting the Old English language.
  711.     The term `Old English' is also used to mean the Black Letter fonts
  712.     used by mediaeval scribes, and called Gothic.  Unfortunately, some
  713.     American typefounding companies use `Gothic' to mean `sans-serif'.
  714.     Both the Anglo-Saxon character sets and the ornamental Black Letter
  715.     fonts are listed here.
  716.  
  717. Julian Bradfield's font for typesetting Old English in TeX -- this supplies 
  718. extra characters for Computer Modern.  The extra characters are eth, Eth,
  719. Thorn, thorn, yogh, Yogh and Polish ogonek.  There are two styles of thorn,
  720. but I note that there is no wynn.  You may have to create an empty file, or
  721. rename a file -- I forget exactly what I had to do.  Some of these characters
  722. can also be found in the International Phonetic Alphabet font as well, but
  723. Julian's are much more convenient for working with Old English.
  724.  
  725. Yannis' Fraktur fonts in [anonymous.tex.babel.german] include ygoth,
  726. which can be used as an Old English Black Letter, and is very like a font
  727. used in a 1581 Geneva Bible I have, if you care :-)
  728.  
  729. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf.cm.oe]
  730. mail: see The Ymir Mail Server under Getting Fonts by FTP and Mail
  731.  
  732. Subject: Fonts: Oriya
  733.  
  734. Sabita Panigrahi is working on Oriya (one of the modern Indian scripts),
  735. but this is not yet available.
  736.  
  737.  
  738. Subject: Fonts: Pandora
  739.  
  740. This is a little like Palatino, annd includes a sans-serif variant.
  741. It is not yet of production quality, unfortunately.
  742.  
  743. ftp: gatekeeper.dec.com (16.1.0.2): cd tex82/MFcontrib/metafonts/pandora
  744. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf]
  745. mail: (N. N. Billawa) sun!metamarks!nm
  746. mail: (Tom Tatlow) tatlow@dash.enet.dec.com  or  tom@math.mit.edu
  747.  
  748. Subject: Fonts: Pica
  749.  
  750. There is also a Pica typewriter font -- italic and bold come out with
  751. straight and wavy underlines (respectively), however.  This is in
  752. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf.pica]
  753.  
  754.  
  755. Subject: Fonts: Pointing Hands
  756.  
  757. Various manual extremities, designed by Georgia Tobin
  758. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf]
  759.  
  760.  
  761. Subject: Fonts: Punk
  762.  
  763. A punK hAndWritten fOnT...
  764. For writing on walls, perhaps.  The lower case is simply a smaller
  765. version of the upper case. 
  766. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf]
  767.  
  768.  
  769. Subject: Fonts: Sanskrit
  770. (see Fonts: Devanagari)
  771.  
  772.  
  773. Subject: Fonts: Sauter
  774.  
  775. This is a rework of Computer Modern.  The outlines are the same, as far as
  776. I know, but it is much easier to generate the various fonts.
  777. By John Sauter.
  778. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf]
  779.  
  780.  
  781. Subject: Fonts: Tamil
  782.  
  783. (Tamil is a very beautiful squiggly Indian script)
  784. An unfinished version of Washington Tamil is available from the University
  785. of Washington, and is included on their Unix TeX distribution in directory:
  786. TeX3.14/MFcontrib/metafonts/washington/tamil together with supporting software.
  787. ftp: blackbox.hacc.washington.edu [128.95.200.1] pub/wntml
  788.  
  789. Avinash Chopde's itrans package (itrans2.10, from avinash@contex.com)
  790. supports Hindi, Marathi, Sanskrit and Tamil.  It includes a PostScript
  791. (Type 3) font for Devanagari, and a Metafont Tamil font (wntml).
  792. ftp: uunet.uu.net [192.48.96.2] ftp/tmp/itrans21.tar.Z (check the version!)
  793.  
  794. See Also: Devanagari, Oriya
  795.  
  796. Subject: Fonts: Tengwar
  797.  
  798. There are at least two Tengwar fonts,
  799. Mike Urban's:
  800. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.mf.tengwar]
  801.  
  802. Julian Bradfield <jcb@lfcs.edinburgh.ac.uk> also has both Tengwar and a
  803. prototype version of Cirth runes. 
  804. See Fonts: Cirth  for details.
  805.  
  806. Subject: Fonts: Thai
  807.  
  808. There are at least three Thai fonts around.  The rmit font is a little tricky
  809. to make, as it needs to be in a directory called ``thai2'', because it
  810. refers to files called "../thai2/name".  USL makes easily.
  811. The third Thai font is by Dr. Robert Batzinger and associates at the United
  812. Bible Societies in Southeast Asia.  I know no more than this.
  813.  
  814. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.babel.thai.rmit]
  815. ftp: ymir.claremont.edu (134.173.4.23): cd [anonymous.tex.babel.thai.usl]
  816.  
  817. Subject: Fonts: Times
  818.  
  819. Formerly produced by the Metafoundry, which is no longer operating.
  820. Pk (binary) files may be available commercialy; Georgina Tobin works as a
  821. Metafont consultant and has since done more work on Times.
  822. See Also: Fonts: Helvetica
  823.  
  824. Subject: Fonts: Vietnamese
  825.  
  826. ftp: blackbox.hacc.washington.edu [128.95.200.1]  cd /pub/testviet
  827.  
  828. This test package includes tfm and pk fonts at 10 point roman and italic.
  829. I understand that you need TeX 3.0 or later to use this, and drivers that
  830. cope with fonts containing more than 128 characters.
  831.  
  832. Subject: Fonts: Waldi Symbol Font
  833.  
  834. A (compatible) superset of the standard LaTeX symbol font designed by Roland
  835. Waldi, at the University of Karlruhe in Germany.
  836.  
  837. ftp: forwis.uni-passau.de (132.231.1.10): pub/tex/dhdurz1/wasy.zoo
  838. ftp: sol.cs.ruu.nl (131.211.80.5): ATARI-ST/tex/wasy.arc
  839.  
  840.  
  841. End of Font List
  842.  
  843. $Id: mf-fonts,v 1.18 91/11/02 19:34:45 lee Exp $
  844.  
  845.  
  846. -- 
  847. Liam Quin, lee@sq.com, SoftQuad, Toronto, 416 239-4801; the barefoot programmer
  848.         `Jacob sod pottage'  [Gen. 25 xxix, King James Bible]
  849.