home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk1.iso / answers / fonts-faq / part2 < prev    next >
Internet Message Format  |  1993-09-22  |  47KB

  1. Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!spool.mu.edu!caen!nic.umass.edu!ymir.cs.umass.edu!ymir.cs.umass.edu!usenet
  2. From: walsh@cs.umass.edu (Norman Walsh)
  3. Newsgroups: comp.fonts,news.answers
  4. Subject: comp.fonts FAQ: General Info (2/3)
  5. Supersedes: <font-faq-2_748294975@cs.umass.edu>
  6. Followup-To: poster
  7. Date: 22 Sep 1993 15:11:53 GMT
  8. Organization: Dept. of Computer Science, Univ. of Mass (Amherst)
  9. Lines: 1073
  10. Approved: news-answers-request@MIT.Edu
  11. Distribution: world
  12. Expires: 5 Nov 1993 15:10:25 GMT
  13. Message-ID: <font-faq-2_748710625@cs.umass.edu>
  14. References: <font-faq-1_748710625@cs.umass.edu>
  15. Reply-To: walsh@cs.umass.edu (Norman Walsh)
  16. NNTP-Posting-Host: ibis.cs.umass.edu
  17. Summary: This posting answers frequently asked questions about fonts.
  18.          It addresses both general font questions and questions that
  19.          are specific to a particular platform.
  20. Xref: senator-bedfellow.mit.edu comp.fonts:10172 news.answers:12787
  21.  
  22. Archive-name: fonts-faq/part2
  23. Version: 2.0.2
  24.  
  25. Subject: 1.13. File Formats
  26.   
  27.   Many different kinds of files are available on the net.  These files
  28.   contain many different kinds of data for many different architectures.
  29.   Frequently, the extension (trailing end) of a filename gives a good
  30.   clue as to the format of its contents and the architecture that it was
  31.   created on.
  32.   
  33.   In order to save space, most files on the net are compressed in one way
  34.   or another.  Many compression/decompression programs exist on multiple
  35.   architectures.
  36.   
  37.   Multiple files and directories are often combined into a single
  38.   `archive' file.  Many archive formats perform compression automatically.
  39.   
  40.   File Format Extensions
  41.   ======================
  42.   
  43.      * .tar
  44.   
  45.        Unix `tape archive' format.  Tar files can contain multiple files
  46.        and directories.  Unlike most archiving programs, tar files are
  47.        held together in a wrapper but are not automatically compressed by
  48.        tar.
  49.   
  50.      * .Z
  51.   
  52.        Unix `compress' format.  Compression doesn't form a wrapper around
  53.        multiple files, it simply compresses a single file.  As a result,
  54.        you will frequently see files with the extension .tar.Z.  This
  55.        implies that the files are compressed tar archives.
  56.   
  57.      * .z .gz
  58.   
  59.        GNU zip format.  GNU zip doesn't form a wrapper around multiple
  60.        files, it simply compresses a single file.  As a result, you will
  61.        frequently see files with the extension .tar.z or .tar.gz.  This
  62.        implies that the files are compressed tar archives.  Do not confuse
  63.        GNU Zip and PKZip or GNU Zip and Unix compress, those are three
  64.        different programs!
  65.   
  66.      * .hqx
  67.   
  68.        Macintosh `BinHex' format.  In order to reliably transfer Mac files
  69.        from one architecture to another, they are BinHex encoded.  This
  70.        is actually an ascii file containing mostly hexadecimal digits.
  71.        It is neither a compression program nor an archive wrapper.
  72.   
  73.      * .sit
  74.   
  75.        Macintosh `Stuffit' archive.
  76.   
  77.      * .cpt
  78.   
  79.        Macintosh `Compactor' archive.
  80.   
  81.        Like the .tar.Z format that is common among Unix archives,
  82.        Macintosh archives frequently have the extensions .sit.hqx or
  83.        .cpt.hqx indicating a BinHex'ed archive.
  84.   
  85.      * .arc
  86.   
  87.        PC `arc' archive.  This is an older standard (in PC terms, at
  88.        least) and has gone out of fashion.
  89.   
  90.      * .zip
  91.   
  92.        PC `zip' archive.  This is the most common PC archive format today.
  93.   
  94.      * .arj
  95.   
  96.        PC `arj' archive.
  97.   
  98.      * .zoo
  99.   
  100.        PC `zoo' archive
  101.   
  102.      * .lzh
  103.   
  104.        PC `lha/lharc' archive.
  105.   
  106.   Font Formats
  107.   ============
  108.   
  109.   Just as the are many, many archive formats, there are many different
  110.   font formats.  The characteristics of some of these formats are
  111.   discussed below.  Once again, the file extension may help you to
  112.   determine the font type.  (On the Mac, the resource TYPE field is
  113.   (probably) a better indicator).
  114.   
  115.      * PostScript Type 1 Fonts:
  116.   
  117.        Postscript Type 1 fonts (Also called ATM (Adobe Type Manager)
  118.        fonts, Type 1, and outline fonts) contains information, in outline
  119.        form, that allows a postscript printer, or ATM to generate fonts
  120.        of any size.  Most also contain hinting information which allows
  121.        fonts to be rendered more readable at lower resolutions and small
  122.        type sizes.
  123.   
  124.      * PostScript Type 3 Fonts:
  125.   
  126.        Postscript type 3 fonts are an old outline font format that is not
  127.        compatible with ATM.  Most developers have stopped using this
  128.        format except in a few special cases, where special type 3
  129.        characteristics (pattern fills inside outlines, for example) have
  130.        been used.
  131.   
  132.      * TrueType Fonts:
  133.   
  134.        Truetype fonts are a new font format developed by Microsoft with
  135.        Apple.  The rendering engine for this font is built into system 7
  136.        and an init, the Truetype init, is available for system 6 (freeware
  137.        from Apple).  It is also built into MS Windows v3.1.  Like
  138.        PostScript Type 1 and Type 3 fonts, it is also an outline font
  139.        format that allows both the screen, and printers, to scale fonts to
  140.        display them in any size.
  141.   
  142.      * Bitmap Fonts:
  143.   
  144.        Bitmap fonts contain bitmaps of fonts in them.  This a picture of
  145.        the font at a specific size that has been optimized to look good
  146.        at that size. It cannot be scaled bigger without making it look
  147.        horrendously ugly.  On the Macintosh, bitmap fonts also contain
  148.        the kerning information for a font and must be installed with both
  149.        type 1 and type 3 fonts.  Their presence also speeds the display
  150.        of commonly used font sizes.
  151.   
  152.   Font Format Extensions
  153.   ======================
  154.   
  155.      * .afm
  156.   
  157.        Adobe Type 1 metric information in `ascii' format (human parsable)
  158.   
  159.      * .bco
  160.   
  161.        Bitstream compressed outline
  162.   
  163.      * .bdf
  164.   
  165.        Adobe's Bitmap Distribution Format.  This format can be converted
  166.        to the platform specific binary files required by the local X
  167.        Windows server.  This is a bitmap font format distributed in ASCII.
  168.   
  169.      * .bez
  170.   
  171.        Bezier outline information
  172.   
  173.      * .chr
  174.   
  175.        Borland stroked font file
  176.   
  177.      * .ff, .f3b, .fb
  178.   
  179.        Sun formats.  More info when I know more...
  180.   
  181.      * .fot
  182.   
  183.        MS-Windows TrueType format fonts
  184.   
  185.      * .gf
  186.   
  187.        Generic font (the output of TeX's MetaFont program (possibly
  188.        others?))
  189.   
  190.      * .fli
  191.   
  192.        Font libraries produced by emTeX fontlib program.  Used by emTeX
  193.        drivers and newer versions of dvips.
  194.   
  195.      * .mf
  196.   
  197.        TeX MetaFont font file (text file of MetaFont commands)
  198.   
  199.      * .pfa
  200.   
  201.        Adobe Type 1 Postscript font in ASCII format (PC/Unix) I believe
  202.        that this format is suitable for directly downloading to your
  203.        PostScript printer (someone correct me if I'm wrong ;-)
  204.   
  205.      * .pfb
  206.   
  207.        Adobe Type 1 PostScript font in "binary`' format (PC/Unix) Note:
  208.        this format is not suitable for downloading directly to your
  209.        PostScript printer.  There are utilities for conversion between
  210.        PFB and PFA (see the utilities section of the FAQ).
  211.   
  212.      * .pfm
  213.   
  214.        Printer font metric information in Windows format
  215.   
  216.      * .pk
  217.   
  218.        TeX packed bitmap font file (also seen as .###pk where ### is a
  219.        number)
  220.   
  221.      * .pl
  222.   
  223.        TeX `property list' file (a human readable version of .tfm)
  224.   
  225.      * .ps
  226.   
  227.        Frequently, any PostScript file.  With respect to fonts, probably
  228.        a Type3 font.  This designation is much less `standard' than the
  229.        others.  Other non-standard extensions are .pso, .fon, and .psf
  230.        (they are a mixture of type 1 and type 3 fonts).
  231.   
  232.      * .pxl
  233.   
  234.        TeX pixel bitmap font file (obsolete, replaced by .pk)
  235.   
  236.      * .sfl
  237.   
  238.        LaserJet bitmapped softfont, landscape orientation
  239.   
  240.      * .sfp
  241.   
  242.        LaserJet bitmapped softfont, portrait orientation
  243.   
  244.      * .sfs
  245.   
  246.        LaserJet scalable softfont
  247.   
  248.      * .tfm
  249.   
  250.        TeX font metric file
  251.   
  252.      * .vf
  253.   
  254.        TeX virtual font which allows building of composite fonts (a
  255.        character can be composed of any sequence of movements, characters
  256.        (possibly from multiple fonts) rules and TeX specials)
  257.   
  258.      * .vpl
  259.   
  260.        TeX `property list' (human readable) format of a .vf
  261.   
  262. Subject: 1.14. Ligatures
  263.   
  264.   A ligature occurs where two or more letterforms are written or printed
  265.   as a unit.  Generally, ligatures replace characters that occur next to
  266.   each other when they share common components.  Ligatures are a subset
  267.   of a more general class of figures called "contextual forms."
  268.   Contextual forms describe the case where the particular shape of a
  269.   letter depends on its context (surrounding letters, whether or not it's
  270.   at the end of a line, etc.).
  271.   
  272.   One of the most common ligatures is "fi".  Since the dot above a
  273.   lowercase 'I' interferes with the loop on the lowercase 'F', when 'f'
  274.   and 'i' are printed next to each other, they are combined into a single
  275.   figure with the dot absorbed into the 'f'.
  276.   
  277.   An example of a more general contextual form is the greek lowercase
  278.   sigma.  When typesetting greek, the selection of which 'sigma' to use
  279.   is determined by whether or not the letter occurs at the end of the
  280.   word (i.e., the final position in the word).
  281.   
  282.      * Amanda Walker provides the following discussion of ligatures:
  283.   
  284.        Ligatures were originally used by medieval scribes to conserve
  285.        space and increase writing speed.  A 14th century manuscript, for
  286.        example, will include hundreds of ligatures (this is also where
  287.        "accents" came from).  Early typefaces used ligatures in order to
  288.        emulate the appearance of hand-lettered manuscripts.  As
  289.        typesetting became more automated, most of these ligatures fell
  290.        out of common use.  It is only recently that computer based
  291.        typesetting has encouraged people to start using them again
  292.        (although 'fine art' printers have used them all along).
  293.        Generally, ligatures work best in typefaces which are derived from
  294.        calligraphic letterforms.  Also useful are contextual forms, such
  295.        as swash capitals, terminal characters, and so on.
  296.   
  297.        A good example of a computer typeface with a rich set of ligatures
  298.        is Adobe Caslon (including Adobe Caslon Expert).  It includes:
  299.   
  300.        Upper case, lower case, small caps, lining numerals, oldstyle
  301.        numerals, vulgar fractions, superior and inferior numerals, swash
  302.        italic caps, ornaments, long s, and the following ligatures:
  303.   
  304.        ff fi fl ffi ffl Rp ct st Sh Si Sl SS St (where S=long s)
  305.   
  306.        [Ed: Another common example is the Computer Modern Roman typeface
  307.        that is provided with TeX. this family of fonts include the ff,
  308.        fi, fl, ffi, and ffl ligatures which TeX automatically uses when
  309.        it finds these letters juxtaposed in the text.]
  310.   
  311.        While there are a large number number of possible ligatures,
  312.        generally only the most common ones are actually provided.  In
  313.        part, this is because the presence of too many alternate forms
  314.        starts reducing legibility.  A case in point is Luxeuil Miniscule,
  315.        a highly-ligatured medieval document hand which is completely
  316.        illegible to the untrained eye (and none too legible to the
  317.        trained eye, either :)).
  318.   
  319.      * Don Hosek offers the following insight into ligatures:
  320.   
  321.        Ligatures were used in lead type, originally in imitation of
  322.        calligraphic actions (particularly in Greek which retained an
  323.        excessive number of ligatures in printed material as late as the
  324.        19th century), but as typefaces developed, ligatures were retained
  325.        to improve the appearance of certain letter combinations. In some
  326.        cases, it was used to allow certain letter combinations to be more
  327.        closely spaced (e.g., "To" or "Vo") and were referred to as
  328.        "logotypes". In other cases, the designs of two letters were merged
  329.        to keep the overall spacing of words uniform. Ligatures are
  330.        provided in most contemporary fonts for exactly this reason.
  331.   
  332.      * Liam Quim makes the following observations:
  333.   
  334.        The term ligature should only be used to describe joined letters in
  335.        printing, not letters that overlap in manuscripts.
  336.   
  337.        Many (not all) accents came from the practice of using a tilde or
  338.        other mark to represent an omitted letter, so that for example the
  339.        Latin word `Dominus' would be written dns, with a tilde or bar over
  340.        the n.  This is an abbreviation, not a ligature.
  341.   
  342.        Most ligatures vanished during the 15th and 16th Centuries.  It was
  343.        simply too much work to use them, and it increased the price of
  344.        book production too much.
  345.   
  346.   [Ed: there is no "complete" set of ligatures.]
  347.   
  348. Subject: 1.15. Built-in Fonts
  349.   
  350.      * PostScript printers (and Adobe Type Manager) with 13 fonts have:
  351.   
  352.        ???
  353.   
  354.      * Postscript printers with 17 fonts have:
  355.   
  356.        Courier, Courier-Bold, Courier-BoldOblique, Courier-Oblique,
  357.        Helvetica, Helvetica-Bold, Helvetica-BoldOblique, Helvetica-Narrow,
  358.        Helvetica-Narrow-Bold, Helvetica-Narrow-BoldOblique,
  359.        Helvetica-Narrow-Oblique, Helvetica-Oblique, Symbol, Times-Bold,
  360.        Times-BoldItalic, Times-Italic, Times-Roman
  361.   
  362.      * Postscript printers with 35 fonts have:
  363.   
  364.        All of the above, plus the following:
  365.   
  366.        ZapfChancery-MediumItalic, ZapfDingbats, AvantGarde-Book,
  367.        AvantGarde-BookOblique, AvantGarde-Demi, AvantGarde-DemiOblique,
  368.        Bookman-Demi, Bookman-DemiItalic, Bookman-Light,
  369.        Bookman-LightItalic, NewCenturySchlbk-Bold,
  370.        NewCenturySchlbk-BoldItalic, NewCenturySchlbk-Italic,
  371.        NewCenturySchlbk-Roman, Palatino-Bold, Palatino-BoldItalic,
  372.        Palatino-Italic, Palatino-Roman
  373.   
  374.      * HP LaserJet printers (II, IIP)
  375.   
  376.        Courier 10, Courier 12, LinePrinter 16.66, ...
  377.   
  378.      * HP LaserJet printers (III, IIIP)
  379.   
  380.        All of the above, plus the following:
  381.   
  382.        Scalable Times Roman and Scalable Univers using Compugraphic's
  383.        Intellifont hinted font format.
  384.   
  385.      * SPARCPrinters
  386.   
  387.        The basic 35 fonts plus four scaled faces of each of Bembo, Gill
  388.        Sans, Rockwell, Lucida, Lucida Bright, Sans and Typewriter, giving
  389.        a total of 57 fonts, all in the F3 format.
  390.   
  391. Subject: 1.16. Glossary
  392.   
  393.   [ I ripped this right out of the manual I wrote for Sfware.  If you have
  394.   comments, improvements, suggestions, please tell me... ]
  395.   
  396.   anti-aliasing
  397.        [ed: this is an 'off-the-cuff' definition, feel free to clarify it
  398.        for me ;-) ]
  399.   
  400.        On low-resolution bitmap devices (where ragged, ugly characters
  401.        are the norm) which support more than two colors, it is possible
  402.        to provide the appearance of higher resolution with anti-aliasing.
  403.        Anti-aliasing uses shaded pixels around the edges of the bitmap
  404.        to give the appearance of partial-pixels which improves the
  405.        apparent resolution.
  406.   
  407.   baseline
  408.        The baseline is an imaginary line upon which each character rests.
  409.        Characters that appear next to each other are (usually) lined up so
  410.        that their baselines are on the same level.  Some characters extend
  411.        below the baseline ("g" and "j", for example) but most rest on it.
  412.   
  413.   bitmap
  414.        A bitmap is an array of dots. If you imagine a sheet of graph paper
  415.        with some squares colored in, a bitmap is a compact way of
  416.        representing to the computer which squares are colored and which
  417.        are not.
  418.   
  419.        In a bitmapped font, every character is represented as a pattern of
  420.        dots in a bitmap. The dots are so small (300 or more dots-per-inch,
  421.        usually) that they are indistinguishable on the printed page.
  422.   
  423.   character
  424.        (1) The smallest component of written language that has semantic
  425.        value.  Character refers to the abstract idea, rather than a
  426.        specific shape (see also glyph), though in code tables some form
  427.        of visual representation is essential for the reader's
  428.        understanding.  (2) The basic unit of encoding for the Unicode
  429.        character encoding, 16 bits of information.  (3) Synonym for "code
  430.        element".  (4) The English name for the ideographic written
  431.        elements of Chinese origin.
  432.   
  433.   download
  434.        Downloading is the process of transferring information from one
  435.        device to another.  This transferral is called downloading when the
  436.        transfer flows from a device of (relatively) more power to one of
  437.        (relatively) less power.  Sending new fonts to your printer so that
  438.        it "learns" how to print characters in that font is called
  439.        downloading.
  440.   
  441.   font
  442.        A particular collection of characters of a typeface with unique
  443.        parameters in the 'Variation vector', a particular instance of
  444.        values for orientation, size, posture, weight, etc., values.  The
  445.        word font or fount is derived from the word foundry, where,
  446.        originally, type was cast.  It has come to mean the vehicle which
  447.        holds the typeface character collection.  A font can be metal,
  448.        photographic film, or electronic media (cartridge, tape, disk).
  449.   
  450.   glyph
  451.        (1) The actual shape (bit pattern, outline) of a character image.
  452.        For example, an italic 'a' and a roman 'a' are two different glyphs
  453.        representing the same underlying character.  In this strict sense,
  454.        any two images which differ in shape constitute different glyphs.
  455.        In this usage, "glyph" is a synonym for "character image", or
  456.        simply "image".  (2) A kind of idealized surface form derived from
  457.        some combination of underlying characters in some specific
  458.        context, rather than an actual character image.  In this broad
  459.        usage, two images would constitute the same glyph whenever they
  460.        have essentially the same topology (as in oblique 'a' and roman
  461.        'a'), but different glyphs when one is written with a hooked top
  462.        and the other without (the way one prints an 'a' by hand).  In
  463.        this usage, "glyph" is a synonym for "glyph type," where glyph is
  464.        defined as in sense 1.
  465.   
  466.   hints
  467.        When a character is described in outline format the outline has
  468.        unlimited resolution.  If you make it ten times as big, it is just
  469.        as accurate as if it were ten times as small.
  470.   
  471.        However, to be of use, we must transfer the character outline to a
  472.        sheet of paper through a device called a raster image processor
  473.        (RIP). The RIP builds the image of the character out of lots of
  474.        little squares called picture elements (pixels).
  475.   
  476.        The problem is, a pixel has physical size and can be printed only
  477.        as either black or white. Look at a sheet of graph paper. Rows and
  478.        columns of little squares (think: pixels). Draw a large `O' in the
  479.        middle of the graph paper. Darken in all the squares touched by the
  480.        O. Do the darkened squares form a letter that looks like the O you
  481.        drew? This is the problem with low resolution (300 dpi). Which
  482.        pixels do you turn on and which do you leave off to most accurately
  483.        reproduce the character?
  484.   
  485.        All methods of hinting strive to fit (map) the outline of a
  486.        character onto the pixel grid and produce the most
  487.        pleasing/recognizable character no matter how coarse the grid is.
  488.   
  489.   kerning
  490.        (noun): That portion of a letter which extends beyond its width,
  491.        that is, the letter shapes that overhang - the projection of a
  492.        character beyond its sidebearings.
  493.   
  494.        (verb): To adjust the intercharacter spacing in character groups
  495.        (words) to improve their appearance.  Some letter combinations
  496.        ("AV" and "To", for example) appear farther apart than others
  497.        because of the shapes of the individual letters.
  498.   
  499.        Many sophisticated word processors move these letter combinations
  500.        closer together automatically.
  501.   
  502.   outline font/format
  503.        See 'scalable font'
  504.   
  505.   point
  506.        The (more or less) original point system (Didot) did have exactly
  507.        72 points to the inch. The catch is that it was the French
  508.        imperial inch, somewhat longer than the English inch, and it went
  509.        away in the French revolution. What most people now think of as
  510.        points were established by the United States Typefounders
  511.        Association in 1886. This measure was a matter of convenience for
  512.        the members of the Association, who didn't want to retool any more
  513.        than they had to, so it had no relationship to the inch. By that
  514.        date, people realized that the inch was an archaic measure anyway;
  515.        the point was set to be 1/12 of a pica, and an 83-pica distance
  516.        was made equal to 35 centimeters. (Talk about arbitrary!)
  517.   
  518.        Thus the measure of 72.27/in. is just an approximation. Of course,
  519.        when PostScript was being written, it was necessary to fit into an
  520.        inch-measured world. For the sake of simplicity PostScript defined
  521.        a point as exactly 1/72". With the prevalance of DTP, the
  522.        simplified point has replaced the older American point in many
  523.        uses. Personally, I don't see that it matters one way or the
  524.        other; all that counts is that there's a commonly-understood unit
  525.        of measurement that allows you to get the size you think you want.
  526.        That is, after all, the point ;)
  527.   
  528.   scalable font
  529.        A scalable font, unlike a bitmapped font, is defined mathematically
  530.        and can be rendered at any requested size (within reason).
  531.   
  532.   softfont
  533.        A softfont is a bitmapped or scalable description of a typeface or
  534.        font.  They can be downloaded to your printer and used just like
  535.        any other printer font.  Unlike built-in and cartridge fonts,
  536.        softfonts use memory inside your printer.  Downloading a lot of
  537.        softfonts may reduce the printers ability to construct complex
  538.        pages.
  539.   
  540.   symbol set
  541.        The symbol set of a font describes the relative positions of
  542.        individual characters within the font.  Since there can only be 256
  543.        characters in most fonts, and there are well over 256 different
  544.        characters used in professional document preparation, there needs
  545.        to be some way to map characters into positions within the font.
  546.        The symbol set serves this purpose.  It identifies the "map" used
  547.        to position characters within the font.
  548.   
  549.   typeface
  550.        The features by which a character's design is recognized, hence
  551.        the word face.  Within the Latin language group of graphic shapes
  552.        are the following forms: Uncial, Blackletter, Serif, Sans Serif,
  553.        Scripts, and Decorative.  Each form characterizes one or more
  554.        designs.  Example: Serif form contains four designs called Old
  555.        Style, Transitional, Modern, and Slab Serif designs.  The typeface
  556.        called Bodoni is a Modern design, while Times Roman is a
  557.        Transitional design.
  558.   
  559.   This is Info file comp.fonts.faq.info, produced by Makeinfo-1.55 from
  560.   the input file FAQ.texinfo.
  561.   
  562. Subject: 1.17. Bibliography
  563.   
  564.   Editors note: the following books have been suggested by readers of
  565.   comp.fonts.  They are listed in no particular order.  I have lost the
  566.   citations for some of the submissions.  If you wrote a review that
  567.   appears below and you aren't credited, please let norm know.
  568.   
  569.   I have decided that this is the best section for pointers to other font
  570.   resources (specs and other documents, for example).  These appear after
  571.   the traditional bibliographic entries.  As usual I will happily accept
  572.   entries for this section.  As of 9/92, the only files listed are the
  573.   TrueType font information files available from Microsoft
  574.   
  575.   Bill Ricker contributed the following general notes:
  576.   
  577.   The Watson-Guptill, Godine, and Dover publishers all have many
  578.   typography titles. Godine and Dover tend to be excellent; W-G tends
  579.   toward 'how-to' books which are good for basics and juried Annuals of
  580.   job work.
  581.   
  582.   Hermann Zapf and his Design Philosophy, Society of Typographic Arts,
  583.   Chicago, 1987.
  584.   
  585.   On Stone -- The Art and Use of Tyography on the Personal Computer,
  586.   Sumner Stone, Bedford Arts, 1991.
  587.   
  588.   Of the Just Shaping of Letters, Albrecht Durer, isbn 0-486-21306-4.
  589.   
  590.   First published in 1525 as part of his theoretical treatise on applied
  591.   geomentry, "The Art of Measurment".
  592.   
  593.   Champ Flevry, Geofroy Troy.
  594.   
  595.   First published in 1529 Troy attempts, in this book, to design an ideal
  596.   Roman alphabet upon geometrical and aesthetic principles.
  597.   
  598.   The Alphabet & Elements of Lettering, Frederic W. Goudy, isbn
  599.   0-486-20792-7. Revised 1942 edition.
  600.   
  601.   This very intresting book looks at the history of letter shapes as well
  602.   font design.
  603.   
  604.   The Mac is Not a Typewriter, Robin Williams, Peachpit Press.
  605.   
  606.   A good, clear explanation of what typography is, and how to get it from
  607.   your computer. Mac-specific, but full of excellent general advice. I
  608.   think there's also a PC version. Available at most computer bookstores
  609.   
  610.   Rhyme and Reason: A Typographic Novel, Erik Spiekermann, H. Berthold AG,
  611.       ISBN 3-9800722-5-8.
  612.   
  613.   Printing Types (2 vols), Daniel Berkely Updike, Dover Press.
  614.   
  615.   Affordable edition of the most readable history of type, lots of
  616.   illustrations.
  617.   
  618.   Notes: Both the Dover and Harvard U. P. editions where 2 volumes.  The
  619.   Dover editions were paperback and the Harvard hardback.  It appears
  620.   that the Dover edition is out of print.  Collectible HUP editions are
  621.   not cheap although later HUP editions may be had.  Most libraries have
  622.   later HUP and Dover editions.  If someone knows of a source, please
  623.   pass it along.
  624.   
  625.   The Art of Hand Lettering, Helm Wotzkow, Dover Press, reprint from 1952.
  626.   
  627.   Looking Good In Print, Roger C. Parker, Ventana Press,       ISBN:
  628.   0-940087-32-4.
  629.   
  630.   Well, as a beginner's book, [it] isn't bad. I can't say that I agree
  631.   with the author's tastes all the time, but he at least gives some good
  632.   examples. Also there are some nice _Publish_-style makeovers.  Don
  633.   Hosek <dhosek@ymir.claremont.edu>
  634.   
  635.   Book Design: A Practical Introduction, Douglas Martin, Van Nostrand
  636.   Reinhold, New York: 1989. 206pp.
  637.   
  638.   Along with Jan White's book (see below), this provides a fairly
  639.   complete guide to book design.  Martin's book is somewhat more
  640.   conservative in outlook and also reflects his UK background.  Don Hosek
  641.   <dhosek@ymir.claremont.edu>
  642.   
  643.   Digital Typography: An Introduction to Type and Composition for Computer
  644.   System Design, Richard Rubinstein, Addison-Wesley, Reading,
  645.   Massachusetts: 1988. 340pp.
  646.   
  647.   An interesting, technological approach to typography which is worth
  648.   reading although not necessarily always worth believing. A not
  649.   insubstantial portion of the text is dedicated to representing type on
  650.   a CRT display and Rubinstein devotes some time to expressing
  651.   characteristics of typography numerically.  Don Hosek
  652.   <dhosek@ymir.claremont.edu>
  653.   
  654.   Graphic Design for the Electronic Age, Jan V. White, Watson-Guptill
  655.   Publications, New York: 1988. 212pp.
  656.   
  657.   A good handbook for document design. In a well-organized approach,
  658.   White covers the principles for laying out most of the typographics
  659.   features of a technical document. White is a bit overeager to embrace
  660.   sans-serif types and in places his layout ideas seem a bit garish, but
  661.   it's still a quite worthwhile book.  Don Hosek
  662.   <dhosek@ymir.claremont.edu>
  663.   
  664.   Xerox Publishing Standards: A Manual of Style and Design, Watson-Guptill
  665.   Publications, New York: 1988. 400pp.
  666.   
  667.   Overall, a disappointing book. It is divided into four sections of
  668.   widely varying intent: "Publishing Process," "Document Organization,"
  669.   "Writing and Style" and "Visual Design." None of them is really
  670.   adequate for the task and all are highly centered on the Xerox method
  671.   for publishing. As a guide to Xerox' process, it succeeds, but as a
  672.   manual for general use, it falls far short. In print.  Don Hosek
  673.   <dhosek@ymir.claremont.edu>
  674.   
  675.   Methods of Book Design (3rd edition), Hugh Williamson, Yale University
  676.   Press, New Haven: 1983. 408pp.
  677.   
  678.   It is a bit out-of-date as regards technology, but on issues relating
  679.   purely to design it is comprehensive and definitive.  Well, I suppose
  680.   it could be argued that printing technology influences design - e.g.
  681.   some types look fine in metal but lousy in digital imagesetting - and
  682.   therefore a book that is out-of-date in technology can't really be
  683.   "definitive" in matters of design either. In any event, _Methods_ is
  684.   more than adequate for a beginner's needs.  My paper-bound copy (ISBN
  685.   0-300-03035-5) was \$13.95; cheap at twice the price!  Cameron Smith
  686.   <cameron@symcom.math.uiuc.edu>
  687.   
  688.   The Thames & Hudson Manual of typography, Rauri McLean, Thames & Hudson
  689.   
  690.   An excellent book if you start getting more interested in type.  Look
  691.   for Rauri McLean's other books after this one...  Liam R.E. Quin
  692.   <lee@sq.com>
  693.   
  694.   Typography and Why it matters, Fernand Baudin.
  695.   
  696.   There is no better introduction than [it].  It's not a primer on
  697.   subjects such as "what does Avant Garde look like," or "This is a good
  698.   font for books." It is a good primer on the things you need to know
  699.   before the rest should be considered. He's a lovely writer, to boot.
  700.   
  701.   [My copy is at work, so I may have munged the title-look up Baudin in
  702.   "Books in Print" and improvise :-)]
  703.   
  704.   Ari Davidow <ari@netcom.com>
  705.   
  706.   Better Type, Betty Binns
  707.   
  708.   It's definitely not a lightweight beginner's introduction, but I've
  709.   found [it] to be indispensable.  It's a large-format hardcover, but you
  710.   can find it remaindered for cheap if you look around.  The book goes
  711.   into great detail about how factors like line spacing, line length,
  712.   point size, and design of typeface (evenness of stroke weight,
  713.   x-height, etc.) affect readability.  When you've gotten the basics out
  714.   of the way and want to learn more about the fine nuances of type color,
  715.   this book is an absolute must.  David Mandl <dmandl@bilbo.shearson.com>
  716.   
  717.   Printing Types: An Introduction..., S. Lawson, (revised) 1990
  718.   
  719.   I'd also recommend Alexander S. Lawson's books especially /Printing
  720.   Types: An Intro.../ (revised), 1990, which includes electronic types
  721.   now.  Bill Ricker <wdr@world.std.com>
  722.   
  723.   Twentieth Century Type Designers, Sebastian Carter, 1987.
  724.   
  725.   Discusses adaptaters of old faces to machine caster and film/laser, as
  726.   well as new works.  Bill Ricker <wdr@world.std.com>
  727.   
  728.   Tally of Types, Stanley Morrison, Cambridge University Press.
  729.   
  730.   A keepsake for CUP on the Monotype fonts he'd acquired for them when he
  731.   was Type Advisor to both Brit.Monotype & CUP (Cambridge University
  732.   Press, Cambs.UK), which discusses his hindsight on some of the great
  733.   revival fonts and some of the better new fonts.  Bill Ricker
  734.   <wdr@world.std.com>
  735.   
  736.   Chicago Manual of Style, University of Chicago Press, 1982;
  737.                 ISBN 0-226-10390-0.
  738.   
  739.   The chapter on Design and Typography is most directly relevant, but
  740.   there are a lot of hints scattered all through the Chicago Manual on
  741.   making your words more readable and your pages more attractive.  Stan
  742.   Brown <brown@ncoast.org>
  743.   
  744.   X Window System Administrator's Guide (O'Reilly X Window System Guides,
  745.   volume 8), O'Reilly
  746.   
  747.   It gives advice about setting up fonts, etc.  Liam Quin <lee@sq.com>
  748.   
  749.   How Bodoni intended his types to look Bodoni, Giambattista. Fregi e
  750.   Majuscole Incise e Fuse de ...  Bodoni, Harvard University Library
  751.   (repr).
  752.   
  753.   Inexpensive collectible, reproduced as a keepsake by the Houghton
  754.   Library at Harvard. [wdr]
  755.   
  756.   The Elements of Typographic Style, Robert Bringhurst, Hartley & Marks
  757.   0-88179-033-8 pbk \$15, Z246.B74 1992 0-88179-110-5 cloth, \$25.
  758.   
  759.   A typography for desktop publishers who want to absorb some style.
  760.   Informed by the historical european tradition and the desktop
  761.   advertising, tempered by oriental yin-yang and examples. A page-turner
  762.   with repeat-read depth.
  763.   
  764.   The only book I've seen that discusses page proportions that admits
  765.   there are more than three ways that describes how to find one that
  766.   feels good for your page. [wdr]
  767.   
  768.   Hermann Zapf on the cover-blurb: "All desktop typographers should study
  769.   this book. ... I wish to see this book become the Typographers' Bible."
  770.   
  771.   Printing It, Clifford Burke, Ballantine,  0-345-02694-2.
  772.   
  773.   Manual for the hobby letterpress printer. [wdr]
  774.   
  775.   Twentieth Century Type Designers, Sebastian Carter, Taplinger, 1987.
  776.   
  777.   Discusses the talented adaptators of old faces to machine caster and
  778.   film/laser, as well as the designers of new works.  Indexed? [wdr]
  779.   
  780.   Design with Type, Carl Dair, University of Toronto Press, 0-8020-1426-7.
  781.   
  782.   In print again (or still?); the ISBN above may be stale.
  783.   
  784.   A great introduction to the issues of practicality and taste that
  785.   confront the users of type. A prized possession. I only regret that the
  786.   book does not include among the excerpts from his Westvaco pamphlets
  787.   the Seven Don'ts of Typography. [wdr]
  788.   
  789.   Typography 6: The Annual of the Type Directors Club, Susan Davis, ed.,
  790.   Watson-Guptill, 0-8230-5540-x.
  791.   
  792.   Specimens of Type Faces in the U.S. G.P.O., John J. Deviny, director.,
  793.   US G.P.O.
  794.   
  795.   Practice of Typography: Plain Printing Types, Theodore Low De Vinne,
  796.   Century Co./DeVinne Press.
  797.   
  798.   One of the earlier critical studies, in four volumes of which this is
  799.   my personal favorite, and still a classic reference. If one wants to
  800.   understand 18th and 19th century typography in context, this writer
  801.   lived the transition  from eclectic to standard sizes, and comments
  802.   with taste. [wdr]
  803.   
  804.   An Essay on Typography, Eric Gill, Godine,  0-87923-762-7.
  805.   
  806.   The Alphabet and Elements of Lettering, Frederic W. Goudy, Dorset Press
  807.   (Marboro Books), 0-88029-330-6
  808.   
  809.   Lovely. A wonderful way to learn Goudy's taste.
  810.   
  811.   Stanley Morison Displayed, Herbert Jones,  Frederick Muller Ltd / W,
  812.   0-584-10352-2.
  813.   
  814.   Lovely. A wonderful way to learn Morrison's taste.
  815.   
  816.   Printing Types: An Introduction..., Alexander S. Lawson et. al., Beacon
  817.   1971,?Godine? 1990; (2nd Ed includes electronic types now)
  818.   
  819.   "Good introduction to comparisons of typefaces, with a detailed history
  820.   and a key family or face of each general category.  Denounces rigid
  821.   indexes of type faces." [wdr]
  822.   
  823.   Anatomy of a Typeface, Alexander Lawson,  Godine, 0-87923-333-8,
  824.   Z250.L34 1990
  825.   
  826.   Deep description of the authors' favorite exemplar and its influences
  827.   and relatives in each type category. It follows, without explicating,
  828.   the category system developed in the prior book. [wdr]
  829.   
  830.   Types of Typefacs and how to recognize them, J. Ben Lieberman,
  831.   Sterling, 1968
  832.   
  833.   "This isn't very good really, but it does give lots of examples of the
  834.   main categories." [Liam] [Old bibliographies praised this one, but I
  835.   haven't seen it so I can't comment.- wdr]
  836.   
  837.   Tally of Types (& other titles), Stanley Morrison,  Cambridge U. Press.
  838.   
  839.   A keepsake for CUP on the Monotype fonts he'd acquired for them when he
  840.   was Type Advisor to both Brit. Monotype & CUP (Cambridge University
  841.   Press, Cambs.UK), which discusses his hindsight on some of the great
  842.   revival fonts and some of the better new fonts. [wdr]
  843.   
  844.   Rookledge's International Type Finder 2nd, Perfect, Christopher and
  845.   Gordon Rookledge, Ed Moyer Bell Ltd / Rizzoli,  1-55921-052-4,
  846.   Z250.P42 [1st Ed was NY: Beil 1983]
  847.   
  848.   "Lg. trade pb. Indexed by stylistic & characteristic features. Shows
  849.   A-Z, a-z, 0-9 in primary figures, whether lining or ranging.
  850.   Particularly distinctive sorts are marked for ease of comparison.
  851.   Separate tables collect the distinctive characters for assistance  in
  852.   identifying a sample." [wdr]
  853.   
  854.   English Printers' Ornaments, Henry R. Plomer, Burt Franklin
  855.   
  856.   Paragraphs on Printing, Bruce Rogers, [Rudge] Dover, 0-486-23817-2
  857.   
  858.   Digital Typography: An Introduction to Type and Composition for
  859.   Computer System Design, Richard Rubinstein, Addison-Wesley, Reading,
  860.   Massachusetts: 1988. 340pp.
  861.   
  862.   For people who are disappointed with how the type looks on the laser,
  863.   this book explains the subleties of that medium and of the screen that
  864.   others miss. This is a study of the Human Factors of computer
  865.   typographic systems. [wdr]
  866.   
  867.   The Case for Legibility, John Ryder, The Bodley Head,  0-370-30158-7,
  868.   Z250.A4
  869.   
  870.   The Solotype Catalog of 4,147 Display typefaces, Dan X. Solo, Dover,
  871.   0-486-27169-2,   Z250.5.D57S654 19
  872.   
  873.   "Working catalog of a specialty Graphics Arts shop.  They use
  874.   proprietary optical special effects techniques to get Desktop
  875.   Publishing effects, and more, without the laser-printer grain.  Great
  876.   listing of 19th Century Decorated Types - probably the largest
  877.   collection in the world. Prices to order headlines from them are NOT
  878.   cheap however.  Their services are for professional or serious hobby
  879.   use only. Solo's previous Dover books show some number of complete
  880.   alphabets of a  general peculiar style; this one shows small fragments
  881.   of his entire usable collection, important as an index.  (According to
  882.   private correspondence, they have more faces that have not yet been
  883.   restored to usable condition.) Not well indexed, but indexed." [wdr]
  884.   
  885.   Stop Stealing Sheep & find out how type works, Erik Spiekermann & E.M.
  886.   Ginger., Adobe Press, 1993
  887.   
  888.   Introductory, motivational.  If you wonder why there are so many type
  889.   faces in the world, this is the book for you! [Liam] [The title refers
  890.   to the old joke: "A man who would  letterspace lowercase would also
  891.   steal sheep." [wdr]]
  892.   
  893.   The Art & Craft of Handmade Paper, Vance Studley, Dover, 0-486-26421-1,
  894.   TS1109.S83 1990
  895.   
  896.   Letters of Credit, Walter Tracey, Godine Press
  897.   
  898.   "I can't recommend this too highly.  It's not as introductory as the
  899.   Sheep Book, but conveys a feeling of love and respect for the letter
  900.   forms, and covers a lot of ground very, very well." [Liam]
  901.   
  902.   Printing Types: Their History, Forms & Use, Daniel Berkely Updike,
  903.   Harvard University Press, reprint by Dover.
  904.   
  905.   The standard reference. Tour-de-force history of type and type-styles.
  906.   A trifle conservative in its biases, but typography is conservative for
  907.   good reason: readibility. Check the addenda for his final words on
  908.   newer faces. [wdr]
  909.   
  910.   1.  I believe the Dover edition to be 3 vols Pbk; both the collectable
  911.   and later Harvard U.P. editions were two vols hbk.
  912.   
  913.   2.  I am informed by my bookseller & Books In Print that the Dover
  914.   edition is out of print. *sigh*  If a source be known, let me know.
  915.   Collectible HUP eds are not cheap, although later HUP eds may be had.
  916.   Most libararies have later HUP or Dover eds. [wdr]
  917.   
  918.   Modern Encyclopedia of Typefaces, 1960-90, Lawrence W. Wallis, Van
  919.   Nostrand Reinhold, 0-442-30809-4, Z250.W238 1990
  920.   
  921.   "Gives examples of most typefaces, almost all digital, designed &
  922.   distributed  in the last 30 years. Cross indexed by foundry and
  923.   designer, and sources and  looks-likes. Some historical bits.  Shows
  924.   full a-z,A-Z,0-9, a few points  (punctuation); and 0-9 again if both
  925.   lining and oldstyle supplied.  Only   complaint is that it omits small
  926.   caps even from what few fonts have 'em and the accented characters, of
  927.   which most have some but too few.  List \$25." [wdr]
  928.   
  929.   About Alphabets: Some Marginal Notes on Type Design, Hermann Zapf, MIT
  930.   Press, 0-262-74003-6
  931.   
  932.   Hermann Zapf & His Design Philosophy, Hermann Zapf, Society of
  933.   Typographic Arts, Chicago
  934.   
  935.   "Anything about, by, or vaguely connected with Hermann Zapf is probably
  936.   worth reading several times :-)" [Liam]
  937.   
  938.   Manuale Typographicum, Hermann Zapf,  MIT Press, 0-262-74004-4
  939.   
  940.   There are two books of this title  (portrait and landscape); this is
  941.   the only mass-market edition of either. Both are Zapf's selections of
  942.   interesting typographical quotations in his inimitable display
  943.   typography. [wdr]
  944.   
  945.   Microsoft Windows 3.1 Programmer's Reference, Microsoft Press.
  946.   
  947.   Documents the Panose system of typeface classification.  Probably
  948.   contains a general discussion of TrueType under MS Windows 3.1.
  949.   
  950.   Introduction to Typography, 3rd ed, Faber, London, 1962.
  951.   
  952.   A very good introduction for any beginner. Also discusses things like
  953.   illustrations and cover design, although not in great detail.
  954.   
  955.   Simon was a purist, as the editor of the 3rd edition remarks.  He did
  956.   not mention phototypesetting in his original edition, but some
  957.   observations on its uses and abuses have since been added.  Anders
  958.   Thulin <ath@linkoping.trab.se>
  959.   
  960.   [ed: additional bibliographic information appears in the file
  961.   "Additional-bibliography" on ibis.cs.umass.edu:/pub/norm/comp.fonts.  I
  962.   have not yet had time to integrate this bibliographic information into
  963.   the FAQ]
  964.   
  965. Subject: 1.18. Font Encoding Standards
  966.   
  967.   Unicode Consortium; The Unicode Standard, volumes 1 and 2, Worldwide
  968.   Character Encoding, Addison-Wesley Publishing Co.
  969.   
  970.   Unicode consortium e-mail address is: <unicode-inc@hq.m4.metaphor.com>
  971.   
  972.   To obtain more information on Unicode or to order their printed material
  973.   and/or diskettes contact:
  974.   
  975.                            Steven A. Greenfield
  976.   
  977.                           Unicode Office Manager
  978.   
  979.                            1965 Charleston Road
  980.   
  981.                           Mountain View, CA 94043
  982.   
  983.                              Tel. 415-966-4189
  984.   
  985.                              Fax. 415-966-1637
  986.   
  987.   Xerox Character Code Standard, Xerox Corp., Xerox Systems Institute,
  988.   475 Oakmead Parkway, Sunnyvale, CA 94086
  989.   
  990. Subject: 1.19. TrueType
  991.   
  992.   George Moore announces the following information regarding TrueType
  993.   fonts:
  994.   
  995.   "I am pleased to announce that there is now one central location for all
  996.   official Microsoft TrueType information available on the Internet.  The
  997.   9 files listed below are available for anonymous ftp access on
  998.   ftp.uu.net (137.39.1.9) in the /vendor/microsoft/TrueType-Info
  999.   directory.  The most important of those files is the TrueType Font Files
  1000.   Specifications, a 400 page book which describes in excruciating detail
  1001.   how to build a TrueType font.  Other information is also available in
  1002.   the same directory and other files will be added from time to time.
  1003.   
  1004.   For those people who do not have ftp access to the Internet can find the
  1005.   same information available for downloading on Compuserve in the
  1006.   Microsoft developer relations forum (GO MSDR) in the TrueType library.
  1007.   
  1008.   Please be aware that the TrueType specifications is a copyrighted work
  1009.   of Microsoft and Apple and can not be resold for profit.
  1010.   
  1011.   TrueType developer information files on ftp.uu.net:
  1012.   
  1013.     1. ttspec1.zip, ttspec2.zip, and ttspec3.zip
  1014.   
  1015.        The TrueType Specification:
  1016.   
  1017.        These three compressed files contain the "TrueType Font Files
  1018.        Specifications", a 400 page book complete with illustrations which
  1019.         details how to construct a TrueType font from scratch (or build
  1020.        a tool   to do so), the TrueType programming language, and the
  1021.        complete format   of each sub-table contained in the .TTF file.
  1022.        These documents are   stored in Word for Windows 2.0 format and
  1023.        require Windows 3.1 for   printing.  See the "readme.doc" (in
  1024.        ttspec1.zip) for printing   instructions.  Requires 2.5MB of disk
  1025.        space after uncompression.
  1026.   
  1027.        This manual is a superset of the similar specifications from Apple
  1028.        and   has added information specific to Windows that is not
  1029.        present in the   Apple version.
  1030.   
  1031.     2. ttfdump.zip
  1032.   
  1033.        An MS-DOS executable which will dump the contents of a TrueType
  1034.        font   out in a human-readable fashion.  It allows you to dump the
  1035.        entire   font, or just specific sub-tables.  This tool, combined
  1036.        with the   specifications above, allows very effective debugging
  1037.        or exploration   of any TrueType font.  For example, to dump the
  1038.        contents of the 'cmap'   (character code to glyph index mapping)
  1039.        table, enter:
  1040.   
  1041.        ttfdump fontname.ttf -tcmap -nx
  1042.   
  1043.        Entering "ttfdump" with no options will give you a help message.
  1044.   
  1045.     3. ttfname.zip
  1046.   
  1047.        Example C source code on how to parse the contents of a TrueType
  1048.        font.    Although this particular example will open up the file
  1049.        and locate the   font name contained within the 'name' table, it
  1050.        could be readily   adapted to parse any other structure in the
  1051.        file.  This compressed zip   file also contains many useful
  1052.        include files which have pre-defined   structures set up for the
  1053.        internal tables of a TrueType font file.    This code may be
  1054.        useful for developers who wish to parse the TrueType   data stream
  1055.        returned by the GetFontData() API in Windows 3.1.
  1056.   
  1057.     4. tt-win.zip
  1058.   
  1059.        A 31 page Word for Windows 2.0 document which is targeted for the
  1060.        Windows developer who is interested in learning about some of the
  1061.         capabilities TrueType adds to Windows 3.1.  Contains many
  1062.        illustrations.
  1063.   
  1064.     5. embeddin.zip
  1065.   
  1066.        A text file which describes all of the information necessary for a
  1067.         Windows developer to add TrueType font embedding capabilities to
  1068.        their   application.  Font embedding allows the application to
  1069.        bundle the   TrueType fonts that were used in that document and
  1070.        transport it to   another platform where the document can be
  1071.        viewed or printed   correctly.
  1072.   
  1073.     6. tt-talk.zip
  1074.   
  1075.        The TrueType Technical Talks 1 and 2.  These text files describe
  1076.        some   of the things that are happening with TrueType behind the
  1077.        scenes in   Windows 3.1.  The first document walks the reader
  1078.        through all of the   steps that occur from when the user first
  1079.        presses the key on the   keyboard until that character appears on
  1080.        the screen (scaling, hinting,   drop out control, caching and
  1081.        blitting).  The second talk describes   one of the unique features
  1082.        of TrueType called non-linear scaling which   allows the font
  1083.        vendor to overcome some of the physical limitations of   low
  1084.        resolution output devices.
  1085.   
  1086.     7. lucida.zip
  1087.   
  1088.        This text file contains useful typographic information on the 22
  1089.        Lucida fonts which are contained in the Microsoft TrueType Font
  1090.        Pack   for Windows.  It gives pointers on line-layout, mixing and
  1091.        matching   fonts in the family and a little history on each
  1092.        typeface.  This   information was written by the font's designers,
  1093.        Chuck Bigelow & Kris   Holmes."
  1094.   
  1095.