Re: Problems building the unifont PFA and DIT files for the PDF book

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Alex,

At 2024-04-20T14:26:17+0200, Alejandro Colomar wrote:
> First problem:
> 
> In the Unifont, I don't see a "Regular" font.  I assumed I should take
> the unifont.otf file.

Since (I believe I saw you say that) you're using GNU Unifont only to
patch up missing code point coverage from other fonts, in your
application it probably makes sense to specify it as a "special" font.

afmtodit(1):
     The -s option should be given if the font is “special”, meaning
     that groff should search it whenever a glyph is not found in the
     current font.  In that case, font‐description‐file should be listed
     as an argument to the fonts directive in the output device’s DESC
     file; if it is not special, there is no need to do so, since
     troff(1) will automatically mount it when it is first used.
[...]
     -s     Add the special directive to the font description file.

I see that the foregoing advice is incomplete: updating the output
device's "DESC" file is only one approach; another is to add a `special`
request to the document, and that's the one I suggest you take for your
man pages book.

So you might put

.special Unifont

in your front.groff file or similar.

> Here's how I've been groff-ifying the Tinos font:
> 	AFMTODIT	.tmp/fonts/devpdf/TinosR
> 	afmtodit -e /usr/share/groff/current/font/devpdf/enc/text.enc .tmp/fonts/devpdf/TinosR.afm /usr/share/groff/current/font/devpdf/map/text.map .tmp/fonts/devpdf/TinosR
> 	/usr/local/bin/afmtodit: AGL name 'mu' already mapped to groff name 'mc'; ignoring AGL name 'uni00B5'
> 	/usr/local/bin/afmtodit: AGL name 'periodcentered' already mapped to groff name 'pc'; ignoring AGL name 'uni00B7'
> 	/usr/local/bin/afmtodit: both gravecomb and uni0340 map to u0300 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both acutecomb and uni0341 map to u0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both uni0313 and uni0343 map to u0313 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both uni02B9 and uni0374 map to u02B9 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both alphatonos and uni1F71 map to u03B1_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both epsilontonos and uni1F73 map to u03B5_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both etatonos and uni1F75 map to u03B7_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both iotatonos and uni1F77 map to u03B9_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both omicrontonos and uni1F79 map to u03BF_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both omegatonos and uni1F7D map to u03C9_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both Alphatonos and uni1FBB map to u0391_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both Epsilontonos and uni1FC9 map to u0395_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both Etatonos and uni1FCB map to u0397_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both iotadieresistonos and uni1FD3 map to u03B9_0308_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both Iotatonos and uni1FDB map to u0399_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both Upsilontonos and uni1FEB map to u03A5_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both dieresistonos and uni1FEE map to u00A8_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both Omicrontonos and uni1FF9 map to u039F_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both Omegatonos and uni1FFB map to u03A9_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both uni2000 and uni2002 map to u2002 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both uni2001 and uni2003 map to u2003 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both Ohm and uni2126 map to u03A9 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both uni1FE3 and upsilondieresistonos map to u03C5_0308_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both uni1F7B and upsilontonos map to u03C5_0301 at /usr/local/bin/afmtodit line 6586.
> 	/usr/local/bin/afmtodit: both patah and yodyod_patah map to u05B7 at /usr/local/bin/afmtodit line 6586.
> 
> Are any of those warnings something I should take care of?  Or should
> I just ignore them?  If they're unimportant, can I ask that low
> severity warnings not be printed?  Or should I just 2>/dev/null?

The afmtodit(1) man page, and groff's "PROBLEMS" file (in the source
distribution, since these warnings can arise when building groff)
address this point.  Whether it's a problem depends on what you wanted.

afmtodit(1):

Diagnostics
     AGL name 'x' already mapped to groff name 'y'; ignoring AGL name
     'uniXXXX'
            You can disregard these if they’re in the form shown, where
            the ignored AGL name contains four hexadecimal digits XXXX.
            The Adobe Glyph List (AGL) has its own names for glyphs;
            they are often different from groff’s special character
            names.  afmtodit is constructing a mapping from groff
            special character names to AGL names; this can be a one‐to‐
            one or many‐to‐one mapping, but one‐to‐many will not work,
            so afmtodit discards the excess mappings.  For example, if x
            is Delta, y is *D, and XXXX is 0394, afmtodit is telling you
            that the groff font description that it is writing cannot
            map the groff special character \[*D] to AGL glyphs Delta
            and uni0394 at the same time.

            If you get a message like this but are unhappy with which
            mapping is ignored, a remedy is to craft an alternative map‐
            file and re‐run afmtodit using it.

> Well, apart from those warnings, that works.  Now, I repeat the process
> with the Unifont:
[...]
> 	$ make build-pdf-book
> 	GROPDF		.tmp/man-pages-6.7-70-gd80376b08.pdf
> 	troff:.tmp/fonts/devpdf/UnifontR: error: font description 'spacewidth' directive missing
[...]
> Did I do anything wrong with the Unifont?  I suspect of treating it as a
> Regular font without any indication that I should.

No, you simply need to tell groff how wide a space should be in that
font.  In groff, a space is not a kind of glyph, because it doesn't put
any "ink" on the "page"; instead it's a (discardable) horizontal
motion.[1]  "Discardable" because if it occurs at the end of an output
line, it is discarded.

If the formatter didn't discard spaces
at the ends of output lines, that would
defeat adjustment to both  margins,  as
one  can  observe in this example here.
Note the ragged margin ending the first
line.

afmtodit(1):
     -w space‐width
            Use space‐width as the width of inter‐word spaces.

You will probably want to know what number to use for a font's space
width.  This is a judgment typographers make.  The groff Texinfo manual
and groff_diff(7) page share a rule of thumb.

     .ss word‐space‐size [additional‐sentence‐space‐size]
            A second argument sets the amount of additional space
            separating sentences on the same output line.  If omitted,
            this amount is set to word‐space‐size.  Both arguments are
            in twelfths of current font’s space width (typically one‐
            fourth to one‐third em for Western scripts; see
            groff_font(5)).  The default for both parameters is 12.
            Negative values are erroneous.

My approach is to generate the font description file _without_
the `-w` option, then read the resulting to file to see how wide the
glyphs are.

If I do this for the URW Times roman font:

$ grep '^M' build/font/devpdf/TR
M       889,662 2       77      M       --      004D

I can see that the "M" is 889 basic units wide (see groff_font(5) for an
explanation of this file format and its terminology).

One third of 889 (rounded to an integer) is 296, so, personally, I'd say
"-w 296".  But in principle, any value between 223 and 296 is "sound",
and ultimately, the "correct" value is whatever best pleases you as a
typographer when considering your document.  It's also worth noting that
when adjustment is enabled, as is the case in AT&T and GNU troffs by
default, an inter-word space will seldom be _exactly_ this "spacewidth"
in any case, except where the document (or a macro package) has
explicitly disabled adjustment.

Regards,
Branden

[1] I do observe that the URW font descriptions shipped by groff include
    a special character called "space".  Syntactically, this would be
    accessed within a groff document via a special character escape
    sequence: `\[space]`.  I've never seen a document do this.  I admit
    that I don't have any idea why this is present or what its semantics
    are: I need a PostScript or PDF expert to tell me.[2]  It does occur
    to me that we might enhance afmtodit make of use of it as the
    default "spacewidth".

[2] Or I can self-help; I have copies of the _PostScript Language
    Reference Manual_ (3rd ed.) and a version of ISO 32000 lying around.

Attachment: signature.asc
Description: PGP signature


[Index of Archives]     [Kernel Documentation]     [Netdev]     [Linux Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux