home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 August / PCWorld_1999-08_cd.bin / doc / HOWTO / mini / Man-Page < prev    next >
Text File  |  1998-03-16  |  33KB  |  810 lines

  1.    
  2.    _THE LINUX MAN-PAGE-HOWTO_
  3.    
  4.    Copyright 1995,96,97,98 by Jens Schweikhardt, email:
  5.    <schweikh@noc.dfn.de>
  6.    
  7.    http://www.shuttle.de/schweikh/home.html
  8.    
  9.    See further information on copying conditions below.
  10.    
  11.    Last update: March 1998. Click here to browse the author's latest
  12.    version of this document. Corrections and suggestions welcome!
  13.    
  14.    This HOWTO explains what you should bear in mind when you are going to
  15.    write on-line documentation -- a so called man page -- that you want
  16.    to make accessible via the man(1) command. Throughout this HOWTO, a
  17.    manual entry is simply referred to as a man page, regardless of actual
  18.    length and without sexist intention.
  19.    
  20.    _Table of contents_
  21.      * 0) A few thoughts on documentation
  22.      * 1) How are man pages accessed? 
  23.      * 2) How should a formatted man page look like?
  24.      * 3) How do I document several programs/functions in a single man
  25.        page?
  26.      * 4) Which macro package should I use?
  27.      * 5) What preprocessors may I use?
  28.      * 6) Should I distribute source and/or already formatted
  29.        documentation?
  30.      * 7) What are the font conventions?
  31.      * 8) How do I polish my man page?
  32.      * 9) How do I get a plain text man page without all that ^H^_ stuff?
  33.      * 10) How do I get a high quality PostScript man page? 
  34.      * 11) How do I get apropos and whatis to work?
  35.      * A) Copying conditions
  36.        
  37.    
  38.    
  39.    _0) A few thoughts on documentation_
  40.    
  41.    Why do we write documentation? Silly question. Because we want others
  42.    to be able to use our program, library function or whatever we have
  43.    written and made available. But writing documentation is not all there
  44.    is to it:
  45.      * Documentation must be accessible. If it's hidden in some
  46.        non-standard place where the documentation related tools won't
  47.        find it -- how can it serve its purpose?
  48.      * documentation must be reliable and accurate. There's nothing more
  49.        annoying than having program behaviour and documentation disagree.
  50.        Users will curse you, send you hate mail and throw your work into
  51.        the bit bucket, with the firm intent to never install anything
  52.        written by that jerk again.
  53.        
  54.    
  55.    
  56.    The historical and well known way documentation is accessed on UNIX is
  57.    via the man(1) command. This HOWTO describes what you have to do to
  58.    write a man page that will be correctly processed by the documentation
  59.    related tools. The most important of these tools are man(1), xman(1x),
  60.    apropos(1), makewhatis(8) and catman(8). Reliability and accuracy of
  61.    the information are, of course, up to you. But even in this respect
  62.    you will find some ideas below that help you avoid some common
  63.    glitches.
  64.    
  65.    _1) How are man pages accessed? _
  66.    
  67.    You need to know the precise mechanism how man pages are accessed in
  68.    order to give your man page the right name and install it in the right
  69.    place. Any man page belongs to a specific section, which is denoted by
  70.    a single character. The most common sections under Linux and their
  71.    human readable names are
  72. Section The human readable name
  73.    1    User commands that may be started by everyone.
  74.    2    System calls, that is, functions provided by the kernel.
  75.    3    Subroutines, that is, library functions.
  76.    4    Devices, that is, special files in the /dev directory.
  77.    5    File format descriptions, e.g. /etc/passwd.
  78.    6    Games, self-explanatory.
  79.    7    Miscellaneous, e.g. macro packages, conventions.
  80.    8    System administration tools that only root can execute.
  81.    9    Another (Linux specific) place for kernel routine documentation.
  82.    n    New documentation, that may be moved to a more appropriate section.
  83.    o    Old documentation, that may be kept for a grace period.
  84.    l    Local documentation referring to this particular system.
  85.  
  86.    
  87.    
  88.    The name of the source file for a man page (the input to the
  89.    formatting system) is the name of the command, function or file name,
  90.    followed by a dot, followed by the section. If you write the
  91.    documentation on the format of the `passwd' file you have to name the
  92.    source file `passwd.5'. Here we also have an example of a file name
  93.    that is the same as a command name. There might be even a library
  94.    subroutine named passwd. Sectioning is the usual way to resolve these
  95.    ambiguities: The command description is found in the file `passwd.1'
  96.    and the hypothetical library subroutine in `passwd.3'.
  97.    
  98.        
  99.        Sometimes additional characters are appended and the file name
  100.        looks for example like `xterm.1x' or `wish.1tk'. The intent is to
  101.        indicate that this is documentation for an X Window program or a
  102.        Tk application, respectively. Some manual browsers can make use of
  103.        this additional information. For example xman will use `xterm(x)'
  104.        and `wish(tk)' in the list of available documentation.
  105.        
  106.    
  107.    
  108.    Please don't use the n, o and l sections; according to the File System
  109.    Standard these sections are deprecated. Stick to the numeric sections.
  110.    Beware of name clashes with existing programs, functions or file
  111.    names. It is certainly a bad idea to write yet another editor and call
  112.    it ed, sed (for smart ed) or red (for Rocky's ed). By making sure your
  113.    program's name is unique you avoid that someone executes your program
  114.    and reads someone else's man page or vice versa. Checking out the lsm
  115.    database on a program name is a place to start doing so.
  116.    
  117.    Now we know the name to give our file. The next decision is which
  118.    directory it will finally get installed (say, when the user runs `make
  119.    install' for your package.) On Linux, all man pages are below
  120.    directories mentioned in the environment variable MANPATH. The doc
  121.    related tools use it quite similar like the shell uses PATH to locate
  122.    executables. In fact, MANPATH has the same format as PATH. Both hold a
  123.    colon separated list of directories (with the exception that MANPATH
  124.    does not allow empty fields and relative pathnames but has absolute
  125.    names only.) If MANPATH is not set or not exported, a default will be
  126.    used that contains at least the /usr/man directory. To speed up the
  127.    search and to keep directories small, the directories specified by
  128.    MANPATH (the so called base directories) contain a bunch of
  129.    subdirectories named `man<s>' where <s> stands for the one character
  130.    section introduced in the table above. Not all of the sections may be
  131.    represented by a subdirectory because there simply is no reason to
  132.    keep an empty `mano' subdirectory. However, there may be directories
  133.    named `cat<s>', `dvi<s>' and `ps<s>' which hold documentation that is
  134.    ready to display or print. More on this later. The only other file in
  135.    any base directory should be a file named `whatis'. The purpose and
  136.    creation of this file will also be described under paragraph 11). The
  137.    safest way to have a man page for section <s> installed in the right
  138.    place is to put it in the directory /usr/man/man<s>. A good Makefile,
  139.    however, will allow the user to chose a base directory, by means of a
  140.    make variable, MANDIR, say. Most of the GNU packages can be configured
  141.    with the --prefix=/what/ever option. The manuals will then be
  142.    installed under the base directory /what/ever/man. I suggest you also
  143.    provide a way to do something similar.
  144.    
  145.    With the advent of the Linux File System Standard (FS-Stnd), things
  146.    became more complicated. The FS-Stnd 1.2 states that
  147.    
  148.        
  149.        "Provisions must be made in the structure of /usr/man to support
  150.        manual pages which are written in different (or multiple)
  151.        languages."
  152.        
  153.    
  154.    
  155.    This is achieved by introducing another directory level that
  156.    distinguishes between different languages. Quoting again from FS-Stnd
  157.    1.2:
  158.    
  159.        
  160.        "This naming of language subdirectories of /usr/man is based on
  161.        Appendix E of the POSIX 1003.1 standard which describes the locale
  162.        identification string -- the most well accepted method to describe
  163.        a cultural environment. The <locale> string is:
  164.        <language>[_<territory>][.<character-set>][,<version>]"
  165.        
  166.    
  167.    
  168.    (See the FS-Stnd for a few common <locale> strings.) According to
  169.    these guidelines, we have our man pages in
  170.    /usr/man/<locale>/man[1-9lno]. The formatted versions should then be
  171.    in /usr/man/<locale>/cat[1-9lno] of course, otherwise we could only
  172.    provide them for a single locale. HOWEVER, I can not recommend
  173.    switching to that structure at this time. The FS-Stnd 1.2 also allows
  174.    that
  175.    
  176.        
  177.        "Systems which use a unique language and code set for all manual
  178.        pages may omit the <locale> substring and store all manual pages
  179.        in <mandir>. For example, systems which only have English manual
  180.        pages coded with ASCII, may store manual pages (the man[1-9]
  181.        directories) directly in /usr/man. (That is the traditional
  182.        circumstance and arrangement in fact.)"
  183.        
  184.    
  185.    
  186.    I would not switch until all tools (like xman, tkman, info and many
  187.    others that read man pages) can cope with the new structure.
  188.    
  189.    _2) How should a formatted man page look like?_
  190.    
  191.    Let me present you an example. Below I will explain it in detail. If
  192.    you read this as plain text it won't show the different typefaces
  193.    (_bold _and _italics_). Please refer to the paragraph "What are the
  194.    font conventions?" for further explanations. Here comes the man page
  195.    for the (hypothetical) foo program.
  196. FOO(1)                     User Manuals                    FOO(1)
  197.  
  198.  
  199.  
  200. _NAME
  201. _     foo - frobnicate the bar library
  202.  
  203. _SYNOPSIS
  204. _     _foo [-bar] [-c_ _config-file_ _]_ _file_ _...
  205.  
  206. DESCRIPTION
  207. _     _foo_  frobnicates the bar library by tweaking internal symbol
  208.      tables. By default it parses all baz segments and rearranges
  209.      them  in  reverse  order  by time for the _xyzzy_(1) linker to
  210.      find them. The symdef entry is then compressed using the WBG
  211.      (Whiz-Bang-Gizmo) algorithm.  All files are processed in the
  212.      order specified.
  213.  
  214. _OPTIONS
  215. _     -b   Do not write `busy' to stdout while processing.
  216.  
  217.      -c config-file
  218.           Use the alternate system wide  _config-file_  instead  of
  219.           _/etc/foo.conf_.   This overrides any _FOOCONF_ environment
  220.           variable.
  221.  
  222.      -a   In addition to the baz segments, also parse the  blurfl
  223.           headers.
  224.  
  225.      -r   Recursive  mode.  Operates  as fast as lightning at the
  226.           expense of a megabyte of virtual memory.
  227.  
  228. _FILES
  229. _     _/etc/foo.conf
  230. _          The system wide configuration file. See _foo_(5) for fur-
  231.           ther details.
  232.      _~/.foorc
  233. _          Per  user  configuration  file.  See _foo_(5) for further
  234.           details.
  235.  
  236. _ENVIRONMENT
  237. _     FOOCONF
  238.           If non-null the full pathname for an  alternate  system
  239.           wide _foo.conf_.  Overridden by the -c option.
  240.  
  241. _DIAGNOSTICS
  242. _     The following diagnostics may be issued on stderr:
  243.  
  244.      Bad magic number.
  245.           The input file does not look like an archive file.
  246.      Old style baz segments.
  247.           foo  can  only  handle  new  style  baz segments. COBOL
  248.           object libraries are not supported in this version.
  249.  
  250. _BUGS
  251. _     The command name should have been chosen more  carefully  to
  252.      reflect its purpose.
  253.  
  254. _AUTHOR
  255. _     Jens Schweikhardt <schweikh@noc.dfn.de>
  256.  
  257. _SEE ALSO
  258. _     _bar_(1), _foo_(5), _xyzzy_(1)
  259.  
  260. Linux                Last change: MARCH 1995                    2
  261.  
  262.  
  263.  
  264.    
  265.    
  266.    Here's the explanation as I promised.
  267.    
  268.    _The NAME section_
  269.    
  270.    ...is the only required section. Man pages without a name section are
  271.    as useful as refrigerators at the north pole. This section also has a
  272.    standardized format consisting of a comma separated list of program or
  273.    function names followed by a dash followed by a short (usually one
  274.    line) description what functionality the program (function, file) is
  275.    supposed to provide. By means of makewhatis(8) the name sections make
  276.    it into the whatis database files. Makewhatis is the reason why the
  277.    name section must exist and why it must adhere to the format I
  278.    described. In the groff source it must look like
  279.    
  280.    .SH NAME foo \- frobnicate the bar library
  281.    
  282.    The \- is of importance here. The backslash is needed to make the dash
  283.    distinct from a hyphenation dash that may appear in either the command
  284.    name or the one line description.
  285.    
  286.    _The SYNOPSIS section_
  287.    
  288.    ...is intended to give a short overview on available program options.
  289.    For functions this sections lists corresponding include files and the
  290.    prototype so the programmer knows the type and number of arguments as
  291.    well as the return type.
  292.    
  293.    _The DESCRIPTION section _
  294.    
  295.    ...gives an eloquent explanation why your sequence of 0s and 1s is
  296.    worth anything at all. Here's where you write down all your knowledge.
  297.    This is the Hall Of Fame. Win other programmer's and user's admiration
  298.    by making this section the source of reliable and detailed
  299.    information. Explain what the arguments are for, the file format, what
  300.    algorithms do the dirty jobs.
  301.    
  302.    _The OPTIONS section_
  303.    
  304.    ...gives a description for any option how it affects program
  305.    behaviour. You knew that, didn't you?
  306.    
  307.    _The FILES section_
  308.    
  309.    ...lists files the program or function uses. For example,
  310.    configuration files, startup files, files the program directly
  311.    operates on. It is a good idea to give the full pathname of these
  312.    files and to make the install process modify the directory part to
  313.    match user preferences: the groff manuals have a default prefix of
  314.    /usr/local, so they reference /usr/local/lib/groff/* by default.
  315.    However, if you install using 'make prefix=/opt/gnu' the references in
  316.    the man page change to /opt/gnu/lib/groff/*
  317.    
  318.    _The ENVIRONMENT section _
  319.    
  320.    ...lists all environment variables that affect your program or
  321.    function and tells how, of course. Most commonly the variables will
  322.    hold pathnames, filenames or default options.
  323.    
  324.    _The DIAGNOSTICS section_
  325.    
  326.    ...should give an overview of the most common error messages from your
  327.    program and how to cope with them. There's no need to explain system
  328.    error error messages (from perror(3)) or fatal signals (from
  329.    psignal(3)) as they can appear during execution of any program.
  330.    
  331.    _The BUGS section _
  332.    
  333.    ...should ideally be non-existent. If you're brave, you can describe
  334.    here limitations, known inconveniences, features that others may
  335.    regard as misfeatures. If you're not so brave, rename it the TO DO
  336.    section ;-)
  337.    
  338.    _The AUTHOR section_
  339.    
  340.    ...is nice to have in case there are gross errors in the documentation
  341.    or program behaviour (Bzzt!) and you want to mail a bug report.
  342.    
  343.    _The SEE ALSO section_
  344.    
  345.    ...is a list of related man pages in alphabetical order.
  346.    Conventionally, it is the last section. You are free to invent other
  347.    sections if they really don't fit in one of those described so far. So
  348.    how exactly did you generate that man page? I expected that question,
  349.    here's the source, Luke:
  350. .\" Process this file with
  351. .\" groff -man -Tascii foo.1
  352. .\"
  353. .TH FOO 1 "MARCH 1995" Linux "User Manuals"
  354. .SH NAME
  355. foo \- frobnicate the bar library
  356. .SH SYNOPSIS
  357. .B foo [-bar] [-c
  358. .I config-file
  359. .B ]
  360. .I file
  361. .B ...
  362. .SH DESCRIPTION
  363. .B foo
  364. frobnicates the bar library by tweaking internal
  365. symbol tables. By default it parses all baz segments
  366. and rearranges them in reverse order by time for the
  367. .BR xyzzy (1)
  368. linker to find them. The symdef entry is then compressed
  369. using the WBG (Whiz-Bang-Gizmo) algorithm.
  370. All files are processed in the order specified.
  371. .SH OPTIONS
  372. .IP -b
  373. Do not write `busy' to stdout while processing.
  374. .IP "-c config-file"
  375. Use the alternate system wide
  376. .I config-file
  377. instead of
  378. .IR /etc/foo.conf .
  379. This overrides any
  380. .B FOOCONF
  381. environment variable.
  382. .IP -a
  383. In addition to the baz segments, also parse the
  384. blurfl headers.
  385. .IP -r
  386. Recursive mode. Operates as fast as lightning
  387. at the expense of a megabyte of virtual memory.
  388. .SH FILES
  389. .I /etc/foo.conf
  390. .RS
  391. The system wide configuration file. See
  392. .BR foo (5)
  393. for further details.
  394. .RE
  395. .I ~/.foorc
  396. .RS
  397. Per user configuration file. See
  398. .BR foo (5)
  399. for further details.
  400. .SH ENVIRONMENT
  401. .IP FOOCONF
  402. If non-null the full pathname for an alternate system wide
  403. .IR foo.conf .
  404. Overridden by the
  405. .B -c
  406. option.
  407. .SH DIAGNOSTICS
  408. The following diagnostics may be issued on stderr:
  409.  
  410. Bad magic number.
  411. .RS
  412. The input file does not look like an archive file.
  413. .RE
  414. Old style baz segments.
  415. .RS
  416. .B foo
  417. can only handle new style baz segments. COBOL
  418. object libraries are not supported in this version.
  419. .SH BUGS
  420. The command name should have been chosen more carefully
  421. to reflect its purpose.
  422. .SH AUTHOR
  423. Jens Schweikhardt <schweikh@noc.dfn.de>
  424. .SH "SEE ALSO"
  425. .BR bar (1),
  426. .BR foo (5),
  427. .BR xyzzy (1)
  428.  
  429.    
  430.    
  431.    _3) How do I document several programs/functions in a single man page?_
  432.    
  433.    
  434.    Many programs (grep, egrep) and functions (printf, fprintf, ...) are
  435.    documented in a single man page. However, these man pages would be
  436.    quite useless if they were only accessible under one name. We can not
  437.    expect a user to remember that the egrep man page is actually the grep
  438.    man page. It is therefore necessary to have the man page available
  439.    under different names. You have several possibilities to achieve this:
  440.     1. have identical copies for each name.
  441.     2. connect all man pages using hard links.
  442.     3. symbolic links pointing to the actual man page.
  443.     4. use groff's `source' mechanism provided by the `.so' macro.
  444.        
  445.    
  446.    
  447.    The first way is obviously a waste of disk space. The second is not
  448.    recommended because intelligent versions of the catman program can
  449.    save a lot of work by looking at the the file type or contents. Hard
  450.    links will prevent catman from being clever. (catman's purpose is to
  451.    format all man pages so that they can be displayed more quickly.) The
  452.    third alternative has a slight drawback: if flexibility is a concern,
  453.    you have to be aware that there are file systems that do not support
  454.    symbolic links. The upshot of this is that the Best Thing (TM) is
  455.    using groff's source mechanism. Here's how to do it: If you want to
  456.    have your man page available under the names `foo' and `bar' in
  457.    section 1, then put the man page in foo.1 and have bar.1 look like
  458.    this:
  459.    
  460.    .so man1/foo.1
  461.    
  462.    It is important to specify the `man1/' directory part as well as the
  463.    file name `foo.1' because when groff is run by the browser it will
  464.    have the manual base directory as its current working directory (cwd)
  465.    and groff interprets .so arguments relative to the cwd.
  466.    
  467.    _4) Which macro package should I use? _
  468.    
  469.    There are a number of macro packages especially designed for use in
  470.    writing man pages. Usually they are in the groff macro directory
  471.    /usr/lib/groff/tmac. The file names are tmac.<something>, where
  472.    <something> is the argument to groff's -m option. Groff will use
  473.    tmac.<something> when it is given the `-m <something>' option. Often
  474.    the blank between `-m' and `<something>' is omitted so we may say
  475.    `groff -man' when we are formatting man pages using the tmac.an macro
  476.    package. That's the reason for the strange name `tmac.an'. Besides
  477.    tmac.an there is another popular macro package, tmac.doc, which
  478.    originated at the University of California at Berkeley. Many BSD man
  479.    pages use it and it seems that UCB has made it its standard for
  480.    documentation. The tmac.doc macros are much more flexible but alas,
  481.    there are manual browsers that will not use them but always call groff
  482.    -man. For example, all xman programs I have seen will screw up on man
  483.    pages requiring tmac.doc. So do yourself a favor: use tmac.an -- use
  484.    of any other macro package is considered harmful. tmac.andoc is a
  485.    pseudo macro package that takes a look at the source and then loads
  486.    either tmac.an or tmac.doc. Actually any man page browser should use
  487.    it but until now not all of them do, so it is best we cling to ye olde
  488.    tmac.an. Anything I tell you from now on and concerning macros only
  489.    holds true for tmac.an. If you want to use the tmac.doc macros anyway,
  490.    here is a pointer to detailed information on how to use them:
  491.    http://www.bsdi.com/bsdi-man There is a searchable index form on the
  492.    page. Enter mdoc.samples and it will find you mdoc.samples(7), a
  493.    tutorial sampler for writing BSD man pages.
  494.    
  495.    _5) What preprocessors may I use? _
  496.    
  497.    Groff comes with at least three preprocessors, tbl, eqn, and pic (on
  498.    some systems they are named gtbl, geqn and gpic.) Their purpose is to
  499.    translate preprocessor macros and their data to regular troff input.
  500.    Tbl is a table preprocessor, eqn is an equations/maths preprocessor
  501.    and pic is a picture preprocessor. Please refer to the man pages for
  502.    more information on what functionality they provide. To put it in a
  503.    nutshell: don't write man pages requiring ANY preprocessor. Eqn will
  504.    generally produce terrible output for typewriter-like devices,
  505.    unfortunately the type of device 99% of all man pages are viewed on.
  506.    For example, XAllocColor.3x uses a few formulas with exponentiation.
  507.    Due to the nature of typewriter-like devices the exponent will be on
  508.    the same line as the base. N to the power of two appears as `N2'. Tbl
  509.    should be avoided because all xman programs I have seen fail on them.
  510.    Xman 3.1.6 uses the following command to format man pages, e.g.
  511.    signal(7):
  512.    
  513.    gtbl /usr/man/man7/signal.7 | geqn | gtbl | groff -Tascii -man
  514.    /tmp/xmana01760 2> /dev/null
  515.    
  516.    which screws up for sources using gtbl, because gtbl output is fed
  517.    again into gtbl. The effect is a man page without your table. I don't
  518.    know if it's a bug or a feature that gtbl chokes on its own output or
  519.    if xman could be a little smarter not using gtbl twice... Anyway, if
  520.    you want a table, format it yourself and put it between .nf .fi lines
  521.    so that it will be left unformatted. You won't have bold and italics
  522.    this way but this beats having your table swallowed any day. I have
  523.    yet to see a man page requiring pic preprocessing. But I would not
  524.    like it. As you can see above, xman will not use it and groff will
  525.    certainly do the funky wadakiki on the input.
  526.    
  527.    _6) Should I distribute source and/or already formatted documentation?
  528.    _
  529.    
  530.    Let me give the pros (+) and cons (-) of a few selected possibilities:
  531.     1. Source only:
  532.        + smaller distribution package.
  533.        - inaccessible on systems without groff.
  534.     2. Uncompressed formatted only:
  535.        + accessible even on systems without groff.
  536.        - the user can't generate a dvi or postscript file.
  537.        - waste of disk space on systems that also handle compressed
  538.        pages.
  539.     3. Compressed formatted only:
  540.        + accessible even on systems without groff.
  541.        - the user can't generate a dvi or postscript file.
  542.        - which compression format would you use? .Z? .z? .gz? All of
  543.        them?
  544.     4. Source and uncompressed formatted:
  545.        + accessible even on systems without groff.
  546.        - larger distribution package
  547.        - some systems may expect compressed formatted man pages.
  548.        - redundant information on systems equipped with groff.
  549.        
  550.    
  551.    
  552.    IMHO it is best to distribute source only. The argument that it's
  553.    inaccessible on systems without groff does not matter. The 500+ man
  554.    pages of the Linux Documentation Project are source only. The man
  555.    pages of XFree86 are source only. The man pages from the FSF are
  556.    source only. In fact, I have rarely seen software distributed with
  557.    formatted man pages. If any sysadmin is really concerned about having
  558.    man pages accessible then he also has groff installed.
  559.    
  560.    _7) What are the font conventions? _
  561.    
  562.    First of all: don't use direct font operators like \fB \fP etc. Use
  563.    macros which take arguments. This way you avoid a common glitch:
  564.    forgetting the font change at the end of the word and having the bold
  565.    or italic extend up to the next font change. Believe me, it happens
  566.    more often than you think. The tmac.an macros provide the following
  567.    type faces:
  568.    
  569.        
  570.        .B Bold
  571.        
  572.        .BI Bold alternating with italics
  573.        
  574.        .BR Bold alternating with Roman
  575.        
  576.        .I Italics
  577.        
  578.        .IB Italics alternating with bold
  579.        
  580.        .IR Italics alternating with Roman
  581.        
  582.        .RB Roman alternating with bold
  583.        
  584.        .RI Roman alternating with italics
  585.        
  586.        .SM Small (scaled 9/10 of the regular size)
  587.        
  588.        .SB Small bold (NOT small alternating with bold)
  589.        
  590.    
  591.    
  592.    X alternating with Y means that the odd arguments are typeset in X
  593.    while the even arguments are typeset in Y. For example
  594.    
  595.        
  596.        .BI "Arg 1 is Bold, " "Arg 2 is Italics, " "and Bold, " "and
  597.        Italics."
  598.        
  599.    
  600.    
  601.    The double quotes are needed to include white space into an argument.
  602.    So much for what's available. Here's how you should make use of the
  603.    different typefaces: (portions shamelessly stolen from man(7))
  604.    
  605.    Although there are many arbitrary conventions for man pages in the
  606.    UNIX world, the existence of several hundred Linux-specific man pages
  607.    defines our standards: For functions, the arguments are always
  608.    specified using italics, even in the SYNOPSIS section, where the rest
  609.    of the function is specified in bold:
  610.    
  611.        
  612.        .BI "myfunction(int " argc ", char **" argv );
  613.        
  614.    
  615.    
  616.    Filenames are always in italics, except in the SYNOPSIS section, where
  617.    included files are in bold. So you should use
  618.    
  619.        
  620.        .I /usr/include/stdio.h
  621.        
  622.    
  623.    
  624.    and
  625.    
  626.        
  627.        .B #include <stdio.h>
  628.        
  629.    
  630.    
  631.    Special macros, which are usually in upper case, are in bold:
  632.    
  633.        
  634.        .B MAXINT
  635.        
  636.    
  637.    
  638.    When enumerating a list of error codes, the codes are in bold. This
  639.    list usually uses the .TP (paragraph with hanging tag) macro as
  640.    follows:
  641.    
  642.        
  643.        .TP
  644.        .B EBADF
  645.        .I fd is not a valid file descriptor.
  646.        .TP
  647.        .B EINVAL
  648.        .I fd is unsuitable for reading
  649.        
  650.    
  651.    
  652.    Any reference to another man page (or to the subject of the current
  653.    man page) is in bold. If the manual section number is given, it is
  654.    given in roman, without any spaces:
  655.    
  656.        
  657.        .BR man (7)
  658.        
  659.    
  660.    
  661.    Acronyms look best when typeset in small type face. So I recommend
  662.    
  663.        
  664.        .SM UNIX
  665.        
  666.        .SM ASCII
  667.        
  668.        .SM TAB
  669.        
  670.        .SM NFS
  671.        
  672.        .SM LALR(1)
  673.        
  674.    
  675.    
  676.    _8) Polishing your man page_
  677.    
  678.    Following are some guidelines that increase reliability, readability
  679.    and 'formatability' of your documentation.
  680.      * Test examples if they work (use cut and paste to give your shell
  681.        the exact wording from the man page) read output of your command
  682.        into your man page, don't type what you THINK your program will
  683.        print.
  684.      * Proof read, ispell, have someone else read it, especially if you
  685.        are not a native English speaker. The HOWTO you are reading by now
  686.        has not yet passed the latter test. Do you want to volunteer?
  687.      * Test your man page: Does groff complain when you format your man
  688.        page? It's nice to have the groff command line in a comment. Does
  689.        the man(1) command complain when you call `man yourprog'? Does the
  690.        way how man(1) uses the formatting system produce the expected
  691.        result? Will xman(1x) and tkman(1tk) cope with your manual?
  692.        XFree86 3.1 has xman 3.1.6 - X11R6, it will try to uncompress
  693.        using
  694.        gzip -c -d < %s > %s
  695.        zcat < %s > %s
  696.      * Will makewhatis(8) be able to extract the one-line description
  697.        from the NAME section?
  698.        
  699.    
  700.    
  701.    _9) How do I get a plain text man page without all that ^H^_ stuff? _
  702.    
  703.    Have a look at col(1), col can filter out backspace sequences. Just in
  704.    case you can't wait that long:
  705.    
  706.    funnyprompt$ groff -t -e -mandoc -Tascii manpage.1 | col -bx >
  707.    manpage.txt
  708.    
  709.    The -t and -e switches tell groff to preprocess using tbl and eqn.
  710.    This is overkill for man pages that don't require preprocessing but it
  711.    doesn't harm apart from a few CPU cycles wasted. On the other hand,
  712.    not using -t when it is actually required does harm: the table is
  713.    terribly formatted. You can even find out (well, "guess" is a better
  714.    word) what command is needed to format a certain groff document (not
  715.    just man pages) by issuing
  716.    
  717.    funnyprompt$ grog /usr/man/man7/signal.7 groff -t -man
  718.    /usr/man/man7/signal.7
  719.    
  720.    "Grog" stands for "GROff Guess", and it does what it says--guess, if
  721.    it were perfect we wouldn't need options any more. I've seen it guess
  722.    wrong on macro packages, but never on preprocessors. Here is a little
  723.    perl script I wrote that can delete the page headers and footers,
  724.    therefore saving you a few pages when printing long and elaborate man
  725.    pages. Save it in a file named strip-headers & chmod 755.
  726.     #!/usr/bin/perl -wn
  727.     #  make it slurp the whole file at once:
  728.     undef $/;
  729.     #  delete first header:
  730.     s/^\n*.*\n+//;
  731.     #  delete last footer:
  732.     s/\n+.*\n+$/\n/g;
  733.     #  delete page breaks:
  734.     s/\n\n+[^ \t].*\n\n+(\S+).*\1\n\n+/\n/g;
  735.     #  collapse two or more blank lines into a single one:
  736.     s/\n{3,}/\n\n/g;
  737.     #  see what's left...
  738.     print;
  739.  
  740.    
  741.    
  742.    You have to use it as the first filter after the 'man' command as it
  743.    relies on the number of newlines being output by groff. For example:
  744.    
  745.    funnyprompt$ man bash | strip-headers | col -bx > bash.txt
  746.    
  747.    _10) How do I get a high quality PostScript man page? _
  748.    
  749.    funnyprompt$ groff -t -e -mandoc -Tps manpage.1 > manpage.ps
  750.    
  751.    Print that using your favorite PostScript printer/interpreter. See
  752.    question 9) for explanation of options.
  753.    
  754.    _11) How do I get `apropos' and `whatis' to work? _
  755.    
  756.    Suppose you wonder what compilers are installed on your system and how
  757.    these can be invoked. To answer this (frequently asked) question you
  758.    say
  759.    
  760.    funnyprompt$ apropos compiler
  761.    f77 (1) - Fortran 77 compiler
  762.    gcc (1) - GNU C and C++ compiler
  763.    pc (1) - Pascal compiler
  764.    
  765.    Apropos and whatis are used to give a quick response which man page
  766.    has information on a certain topic. Both programs search a number of
  767.    files named `whatis' that may be found in each of the manual base
  768.    directories. Like I said before, the whatis data base files contain a
  769.    one line entry for any man page in the respective directory tree. In
  770.    fact, that line is exactly the NAME section (to be precise: joined on
  771.    one line and with hyphenation removed, also note that the section is
  772.    mentioned within parentheses). The whatis data base files are created
  773.    with the makewhatis(8) program. There are several versions around, so
  774.    please refer to the man page what options are available. In order for
  775.    makewhatis to be able to extract the NAME sections correctly it is
  776.    important that you, the manual writer, adhere to the NAME section
  777.    format described under question 2). The difference between apropos and
  778.    whatis is where in the line and what they are looking for. Apropos
  779.    (which is equivalent to man -k) searches the argument string anywhere
  780.    on the line whereas whatis (equivalent to man -f) tries to match a
  781.    complete command name only on the part before the dash. Consequently,
  782.    `whatis cc' will report if there is a cc manual and remain quiet for
  783.    gcc.
  784.    
  785.    Corrections and suggestions welcome!
  786.    
  787.    _A) Copying conditions _
  788.    
  789.    Copyright 1995,96,97 by Jens Schweikhardt <schweikh@noc.dfn.de>
  790.    
  791.    Voice: ++49 7151 909516
  792.    
  793.    Unless otherwise stated, Linux HOWTO documents are copyrighted by
  794.    their respective authors. Linux HOWTO documents may be reproduced and
  795.    distributed in whole or in part, in any medium physical or electronic,
  796.    as long as this copyright notice is retained on all copies. Commercial
  797.    redistribution is allowed and encouraged; however, the author would
  798.    like to be notified of any such distributions. All translations,
  799.    derivative works, or aggregate works incorporating any Linux HOWTO
  800.    documents must be covered under this copyright notice. That is, you
  801.    may not produce a derivative work from a HOWTO and impose additional
  802.    restrictions on its distribution. Exceptions to these rules may be
  803.    granted under certain conditions; please contact the Linux HOWTO
  804.    coordinator at the address given below. In short, we wish to promote
  805.    dissemination of this information through as many channels as
  806.    possible. However, we do wish to retain copyright on the HOWTO
  807.    documents, and would like to be notified of any plans to redistribute
  808.    the HOWTOs. If you have questions, please contact Greg Hankins, the
  809.    Linux HOWTO coordinator, at gregh@sunsite.unc.edu via email.
  810.