01b6260
diff -dur latexmk-3.08n.ORIG/latexmk.1 latexmk-3.08n/latexmk.1
01b6260
--- latexmk-3.08n.ORIG/latexmk.1	2007-02-16 13:03:38.000000000 -0700
01b6260
+++ latexmk-3.08n/latexmk.1	2007-02-27 11:59:26.000000000 -0700
01b6260
@@ -1,9 +1,9 @@
01b6260
-.TH LATEXMK 1L "16 February 2007" ""
01b6260
-.SH NAME
01b6260
+.TH "LATEXMK" "1L" "16 February 2007" "" ""
01b6260
+.SH "NAME"
01b6260
 latexmk \- generate LaTeX document
01b6260
-.SH SYNOPSIS
01b6260
+.SH "SYNOPSIS"
01b6260
 .B latexmk [options] [file ...] 
01b6260
-.SH DESCRIPTION
01b6260
+.SH "DESCRIPTION"
01b6260
 .I LatexMk
01b6260
 completely automates the process of compiling a LaTeX document.
01b6260
 Essentially, it is a highly specialized relative of the general
01b6260
@@ -13,10 +13,10 @@
01b6260
 to run continuously with a previewer; in that case the latex program,
01b6260
 etc, are rerun 
01b6260
 whenever one of the source files is modified.  
01b6260
-.PP
01b6260
+.PP 
01b6260
 \fILatexmk\fR will normally determine which are the source files by
01b6260
 examining the log file.  It has an option to parse the TeX file instead
01b6260
---- see later. When \fIlatexmk\fR is run, it will examine the timestamps
01b6260
+\-\-\- see later. When \fIlatexmk\fR is run, it will examine the timestamps
01b6260
 on the source files.
01b6260
 If any of the source files have been changed since the last document
01b6260
 generation, \fIlatexmk\fR will run the various LaTeX processing
01b6260
@@ -27,39 +27,39 @@
01b6260
 With some macro packages and document styles four, or even more, runs may
01b6260
 be needed. If necessary, \fIlatexmk\fR will also run bibtex and/or
01b6260
 makeindex.  
01b6260
-.PP
01b6260
-[If the option \fB-it\fR to scan the LaTeX file is used, the main LaTeX
01b6260
+.PP 
01b6260
+[If the option \fB\-it\fR to scan the LaTeX file is used, the main LaTeX
01b6260
 file and all input and included files (recursively) are scanned for
01b6260
 LaTeX commands 
01b6260
 for inputting and including other TeX files and figure files.  Then on
01b6260
 subsequent runs, 
01b6260
-\fIlatexmk\fR with the \fB-it\fR switch reads the dependency 
01b6260
+\fIlatexmk\fR with the \fB\-it\fR switch reads the dependency 
01b6260
 information from this file.  If the dependencies of the document are
01b6260
 changed (e.g., by adding or removing an \\input command), an additional
01b6260
-pass of \fIlatexmk -i\fR or \fIlatexmk -I\fR will update the dependency
01b6260
+pass of \fIlatexmk \-i\fR or \fIlatexmk \-I\fR will update the dependency
01b6260
 file.]
01b6260
-.PP
01b6260
+.PP 
01b6260
 \fILatexmk\fR has two different previewing options.  In the simple
01b6260
-\fB-pv\fR option, a dvi, postscript or pdf previewer is automatically run
01b6260
+\fB\-pv\fR option, a dvi, postscript or pdf previewer is automatically run
01b6260
 after generating the dvi, postscript or pdf version of the document.  The
01b6260
-type of viewer is selected automatically depending on the \fB-ps\fR,
01b6260
-\fB-pdf\fR  or \fB-pdfps\fR options.    The kind of file to be viewed can
01b6260
-also be explicitly selected by using the \fB-view\fR option
01b6260
-(\fB-view=ps\fR, etc).
01b6260
-.PP
01b6260
+type of viewer is selected automatically depending on the \fB\-ps\fR,
01b6260
+\fB\-pdf\fR  or \fB\-pdfps\fR options.    The kind of file to be viewed can
01b6260
+also be explicitly selected by using the \fB\-view\fR option
01b6260
+(\fB\-view=ps\fR, etc).
01b6260
+.PP 
01b6260
 The second previewing option is 
01b6260
-the powerful \fB-pvc\fR option (mnemonic:  "preview continuously").  
01b6260
+the powerful \fB\-pvc\fR option (mnemonic:  "preview continuously").  
01b6260
 Particularly when a document is reaching the final stages of editing, it
01b6260
 is often useful to have a previewer open continuously and have it update
01b6260
 its display whenever changes are made to the source file(s), and this
01b6260
-is done by  the \fB-pvc\fR option.  With this option, \fIlatexmk\fR
01b6260
+is done by  the \fB\-pvc\fR option.  With this option, \fIlatexmk\fR
01b6260
 runs a previewer for the 
01b6260
 document,  and then \fIlatexmk\fR repeatedly monitors the source files of
01b6260
 the document to see if any changes have been made since the last dependent
01b6260
 file
01b6260
 was produced.  When changes are detected, \fIlatexmk\fR runs the
01b6260
 appropriate LaTeX commands to regenerate the .dvi, .ps and/or .pdf files
01b6260
-(depending on the which of the \fB-ps\fR, \fB-pdf\fR  and \fB-pdfps\fR
01b6260
+(depending on the which of the \fB\-ps\fR, \fB\-pdf\fR  and \fB\-pdfps\fR
01b6260
 options was specified).  A good previewer (like 
01b6260
 \fIgv\fR) will then automatically update its display.  
01b6260
 Thus the user can simply edit a file and, when the
01b6260
@@ -67,24 +67,24 @@
01b6260
 cycle of updating the .dvi (and possibly the .ps and .pdf) file,
01b6260
 and refreshing the previewer's display.
01b6260
 It's not quite WYSIWYG, but usefully close.
01b6260
-.PP
01b6260
+.PP 
01b6260
 For other
01b6260
 previewers, the user will have to manually make the previewer update
01b6260
 its display, which can be (xdvi and gsview) as forcing a redraw of its
01b6260
 display.
01b6260
-.PP
01b6260
+.PP 
01b6260
 \fILatexmk\fR has the ability to print a banner in gray diagonally across
01b6260
 each page when making the postscript file.  It can also, if needed,
01b6260
 call an external program to do other postprocessing on the generated
01b6260
 files. 
01b6260
-.PP
01b6260
+.PP 
01b6260
 \fILatexmk\fR is highly configurable, both from the command line and
01b6260
 in configuration files, so that it can accommodate a wide variety of
01b6260
 user needs and system configurations. 
01b6260
-.SH LATEXMK OPTIONS AND ARGUMENTS
01b6260
-(All options can be introduced by single or double "-" characters,
01b6260
-e.g., "latexmk -help" or "latexmk --help".)
01b6260
-.TP
01b6260
+.SH "LATEXMK OPTIONS AND ARGUMENTS"
01b6260
+(All options can be introduced by single or double "\-" characters,
01b6260
+e.g., "latexmk \-help" or "latexmk \-\-help".)
01b6260
+.TP 
01b6260
 .B file
01b6260
 One or more files can be specified.  If no files are specified,
01b6260
 \fIlatexmk\fR will, by default, run on all files in the current working directory
01b6260
@@ -97,72 +97,72 @@
01b6260
 	latexmk foo
01b6260
 
01b6260
 then \fIlatexmk\fR will operate on the file "foo.tex".  
01b6260
-.TP
01b6260
-.B -bm <message>
01b6260
+.TP 
01b6260
+.B \-bm <message>
01b6260
 A banner message to print diagonally across each page when converting
01b6260
 the dvi file to postscript.  The message must be a single argument on
01b6260
 the command line so be careful with quoting spaces and such.
01b6260
 
01b6260
-Note that if the \fB-bm\fR option is specified, the \fB-ps\fR option is
01b6260
+Note that if the \fB\-bm\fR option is specified, the \fB\-ps\fR option is
01b6260
 assumed and the postscript file is always generated, even if it is newer
01b6260
 than the dvi file.
01b6260
-.TP
01b6260
-.B -bi <intensity>
01b6260
+.TP 
01b6260
+.B \-bi <intensity>
01b6260
 How dark to print the banner message.  A decimal number between 0 and 1.
01b6260
 0 is black and 1 is white, default is 0.95 which is OK unless your
01b6260
 toner cartridge is getting low.
01b6260
-.TP
01b6260
-.B -bs <scale>
01b6260
+.TP 
01b6260
+.B \-bs <scale>
01b6260
 A decimal number that specifies how large the banner message will be
01b6260
 printed.  Experimentation is necessary to get the right scale for your
01b6260
 message, as a rule of thumb the scale should be about equal to 1100
01b6260
 divided by the number of characters in the message.  Default is 220.0
01b6260
 which is just right for 5 character messages.
01b6260
 .TP 
01b6260
-.B -commands
01b6260
+.B \-commands
01b6260
 List the commands used by \fIlatexmk\fR for processing files, and then
01b6260
 exit. 
01b6260
 .TP 
01b6260
-.B -c
01b6260
+.B \-c
01b6260
 Clean up (remove) all regenerateable files generated by \fIlatex\fR and
01b6260
 \fIbibtex\fR except dvi, postscript and pdf.  In addition, files 
01b6260
 specified by the $clean_ext configuration variable are removed.
01b6260
 
01b6260
-This cleanup is instead of a regular make.  See the \fB-gg\fR option
01b6260
+This cleanup is instead of a regular make.  See the \fB\-gg\fR option
01b6260
 if you want to do a cleanup than a make.
01b6260
 .TP 
01b6260
-.B -C
01b6260
+.B \-C
01b6260
 Clean up (remove) all regenerateable files generated by \fIlatex\fR
01b6260
 and \fIbibtex\fR including aux, dep, dvi, postscript and pdf.  In
01b6260
 addition, those specified by the $clean_ext and $clean_full_ext
01b6260
 configuration variables.
01b6260
 
01b6260
-This cleanup is instead of a regular make.  See the \fB-gg\fR option
01b6260
+This cleanup is instead of a regular make.  See the \fB\-gg\fR option
01b6260
 if you want to do a cleanup than a make.
01b6260
-.TP
01b6260
-.B -c1
01b6260
+.TP 
01b6260
+.B \-c1
01b6260
 Clean up (remove) all regenerateable files generated by \fIlatex\fR
01b6260
 and \fIbibtex\fR except aux and dep.  In addition, files specified by
01b6260
 the $clean_ext and $clean_full_ext configuration variables are
01b6260
 removed.
01b6260
 
01b6260
-This cleanup is instead of a regular make.  See the \fB-gg\fR option
01b6260
+This cleanup is instead of a regular make.  See the \fB\-gg\fR option
01b6260
 if you want to do a cleanup than a make.
01b6260
 .TP 
01b6260
-.B -d
01b6260
+.B \-d
01b6260
 Set draft mode.  This prints the banner message "DRAFT" across your
01b6260
 page when converting the dvi file to postscript.  Size and intensity
01b6260
-can be modified with the \fB-bs\fR and \fB-bi\fR options.  The \fB-bm\fR
01b6260
+can be modified with the \fB\-bs\fR and \fB\-bi\fR options.  The \fB\-bm\fR
01b6260
 option will override this option as this is really just a short way of
01b6260
 specifying:
01b6260
 
01b6260
-	latexmk -bm DRAFT
01b6260
+	latexmk \-bm DRAFT
01b6260
 
01b6260
-Note that if the \fB-d\fR option is specified, the \fB-ps\fR option is
01b6260
+Note that if the \fB\-d\fR option is specified, the \fB\-ps\fR option is
01b6260
 assumed and the postscript file is always generated, even if it is newer
01b6260
 than the dvi file.
01b6260
-.TP
01b6260
-.B -dF
01b6260
+.TP 
01b6260
+.B \-dF
01b6260
 Dvi file filtering.  The argument to this option is a filter which will
01b6260
 generate a filtered dvi file with the extension ".dviF".  All extra
01b6260
 processing (e.g. conversion to postscript, preview, printing) will then
01b6260
@@ -170,157 +170,157 @@
01b6260
 
01b6260
 Example usage: To use dviselect to select only the even pages of the dvi file:
01b6260
 
01b6260
-	latexmk -dF 'dviselect even' foo.tex
01b6260
-.TP
01b6260
-.B -dvi
01b6260
+	latexmk \-dF 'dviselect even' foo.tex
01b6260
+.TP 
01b6260
+.B \-dvi
01b6260
 Generate dvi version of document.
01b6260
-.TP
01b6260
-.B -dvi-
01b6260
+.TP 
01b6260
+.B \-dvi\-
01b6260
 Turn off generation of dvi version of document.  (This may get
01b6260
 overridden, if some other file is made (a .ps file) that is generated from
01b6260
 the dvi file, or if no generated file at all is requested.)
01b6260
-.TP
01b6260
-.B -diagnostics
01b6260
+.TP 
01b6260
+.B \-diagnostics
01b6260
 Whenever a log file is parsed to determine the input and included
01b6260
 files, print a list of these files.
01b6260
-.TP
01b6260
-.B -f
01b6260
+.TP 
01b6260
+.B \-f
01b6260
 Force \fIlatexmk\fR to continue document processing despite errors.
01b6260
 Normally, when \fIlatexmk\fR detects that \fIlatex\fR has found an error
01b6260
 which will not be resolved by further processing, the program terminates.
01b6260
-.TP
01b6260
-.B -f-
01b6260
-Turn off the forced processing-past-errors such as is set by the
01b6260
-\fB-f\fR option.  This could be used to override a setting in a
01b6260
+.TP 
01b6260
+.B \-f\-
01b6260
+Turn off the forced processing\-past\-errors such as is set by the
01b6260
+\fB\-f\fR option.  This could be used to override a setting in a
01b6260
 configuration file.
01b6260
-.TP
01b6260
-.B -F
01b6260
+.TP 
01b6260
+.B \-F
01b6260
 Force \fIlatexmk\fR to include files that don't exist when generating
01b6260
 dependency files.  A warning is produced instead of an error message and
01b6260
 the program terminating.  If the file name is not an absolute path, it
01b6260
 is assumed to be relative to the current working directory.  (Note: This
01b6260
-option is only relevant if you are using the \fB-it\fR to obtain the
01b6260
+option is only relevant if you are using the \fB\-it\fR to obtain the
01b6260
 dependency information from the tex files.  The default is to obtain
01b6260
-this information from the log file and it that case the \fB-F\fR
01b6260
+this information from the log file and it that case the \fB\-F\fR
01b6260
 option has no effect.)
01b6260
-.TP
01b6260
-.B -F-
01b6260
-Turn off \fB-F\fR.
01b6260
-.TP
01b6260
-.B -g
01b6260
+.TP 
01b6260
+.B \-F\-
01b6260
+Turn off \fB\-F\fR.
01b6260
+.TP 
01b6260
+.B \-g
01b6260
 Force \fIlatexmk\fR to process document, disregarding the timestamps of the 
01b6260
 source files.
01b6260
 This option is useful, for example, if you change some options and
01b6260
 wish to reprocess the files.
01b6260
-.TP
01b6260
-.B -g-
01b6260
-Turn off \fB-g\fR.
01b6260
-.TP
01b6260
-.B -gg
01b6260
+.TP 
01b6260
+.B \-g\-
01b6260
+Turn off \fB\-g\fR.
01b6260
+.TP 
01b6260
+.B \-gg
01b6260
 "Super go mode" or "clean make": clean out generated files as if the
01b6260
-\fB-C\fR had been given, and then do a regular make.
01b6260
-.TP
01b6260
-.B -h, -help
01b6260
+\fB\-C\fR had been given, and then do a regular make.
01b6260
+.TP 
01b6260
+.B \-h, \-help
01b6260
 Print help information.
01b6260
-.TP
01b6260
-.B -i
01b6260
+.TP 
01b6260
+.B \-i
01b6260
 Generate new dependency file if root file is newer
01b6260
 than dependency file or dependency file does not exist.
01b6260
 The dependency information is taken from the log file or the source file,
01b6260
-depending on the setting made by the \fB-il\fR and \fB-it\fR switches.
01b6260
-.TP
01b6260
-.B -i-
01b6260
-Turn off \fB-i\fR.
01b6260
-.TP
01b6260
-.B -il
01b6260
+depending on the setting made by the \fB\-il\fR and \fB\-it\fR switches.
01b6260
+.TP 
01b6260
+.B \-i\-
01b6260
+Turn off \fB\-i\fR.
01b6260
+.TP 
01b6260
+.B \-il
01b6260
 Extract dependency information from log file.  This is normally the best
01b6260
 method, so it is the default. However, some packages do not put
01b6260
 information on files read in the log file, and then it may be better to
01b6260
-tell \fIlatexmk\fR to get the information from the TeX file(s) --- see the 
01b6260
-switch \fB-it\fR. 
01b6260
+tell \fIlatexmk\fR to get the information from the TeX file(s) \-\-\- see the 
01b6260
+switch \fB\-it\fR. 
01b6260
 (Default)
01b6260
-.TP
01b6260
-.B -it
01b6260
+.TP 
01b6260
+.B \-it
01b6260
 Extract dependency information by scanning the source TeX file(s), rather
01b6260
 than the log file.
01b6260
 This is the method used by earlier versions of \fIlatexmk\fR.  It relies on
01b6260
 parsing TeX files, which can be confused by definitions of new commands,
01b6260
-etc.  Normally it is better to tell \fIlatexmk\fR to scan the log file --- see
01b6260
-the switch \fB-il\fR.  
01b6260
-.TP
01b6260
-.B -I
01b6260
+etc.  Normally it is better to tell \fIlatexmk\fR to scan the log file \-\-\- see
01b6260
+the switch \fB\-il\fR.  
01b6260
+.TP 
01b6260
+.B \-I
01b6260
 Always generate new dependency file, even if newer
01b6260
 dependency file exists.  
01b6260
 The dependency information is taken from the log file or the source file,
01b6260
-depending on the setting made by the \fB-il\fR and \fB-it\fR switches.
01b6260
-.TP
01b6260
-.B -I-
01b6260
-Turn off \fB-I\fR.
01b6260
-.TP
01b6260
-.B -l
01b6260
+depending on the setting made by the \fB\-il\fR and \fB\-it\fR switches.
01b6260
+.TP 
01b6260
+.B \-I\-
01b6260
+Turn off \fB\-I\fR.
01b6260
+.TP 
01b6260
+.B \-l
01b6260
 Run in landscape mode, using the landscape mode for the previewers and
01b6260
 the dvi to postscript converters.
01b6260
-.TP
01b6260
-.B -l-
01b6260
-Turn off \fB-l\fR.
01b6260
-.TP
01b6260
-.B -new-viewer
01b6260
-When in continuous-preview mode, always start a new viewer to view the
01b6260
-generated file.  By default, \fIlatexmk\fR will, in continuous-preview
01b6260
+.TP 
01b6260
+.B \-l\-
01b6260
+Turn off \fB\-l\fR.
01b6260
+.TP 
01b6260
+.B \-new\-viewer
01b6260
+When in continuous\-preview mode, always start a new viewer to view the
01b6260
+generated file.  By default, \fIlatexmk\fR will, in continuous\-preview
01b6260
 mode, test for a previously running previewer for the same file and
01b6260
 not start a new one if a previous previewer is running.  However, its
01b6260
-test sometimes fails (notably if there is an already-running previewer
01b6260
+test sometimes fails (notably if there is an already\-running previewer
01b6260
 that is viewing a file of the same name as the current file, but in a
01b6260
 different directory).  This option turns off this default behavior.
01b6260
-.TP
01b6260
-.B -new-viewer-
01b6260
-The inverse of the \fR-new-viewer\fB option.  It puts \fIlatexmk\fR
01b6260
-in its normal behavior that in preview-continuous mode it checks for
01b6260
-an already-running previewer.  
01b6260
-.TP
01b6260
-.B -p
01b6260
+.TP 
01b6260
+.B \-new\-viewer\-
01b6260
+The inverse of the \fR\-new\-viewer\fB option.  It puts \fIlatexmk\fR
01b6260
+in its normal behavior that in preview\-continuous mode it checks for
01b6260
+an already\-running previewer.  
01b6260
+.TP 
01b6260
+.B \-p
01b6260
 Print out the file.  By default, this is done using lpr after
01b6260
 generating the postscript version.  But you can use the
01b6260
-\fB-print=...\fR option to print the dvi or pdf files instead, and you can
01b6260
+\fB\-print=...\fR option to print the dvi or pdf files instead, and you can
01b6260
 configure this in a start up file (by setting the \fI$print_type\fR
01b6260
 variable. 
01b6260
 
01b6260
-Under MS-Windows you must have configured the print commands used by
01b6260
+Under MS\-Windows you must have configured the print commands used by
01b6260
 \fIlatexmk\fR.
01b6260
 
01b6260
-This option is incompatible with the \fB-pv\fR and \fB-pvc\fR options,
01b6260
+This option is incompatible with the \fB\-pv\fR and \fB\-pvc\fR options,
01b6260
 so it turns them off. 
01b6260
-.TP
01b6260
-.B -pdf
01b6260
+.TP 
01b6260
+.B \-pdf
01b6260
 Generate pdf version of document using pdflatex.
01b6260
-.TP
01b6260
-.B -pdfdvi
01b6260
+.TP 
01b6260
+.B \-pdfdvi
01b6260
 Generate pdf version of document from the dvi file, by default using dvipdf.
01b6260
-.TP
01b6260
-.B -pdfps
01b6260
+.TP 
01b6260
+.B \-pdfps
01b6260
 Generate pdf version of document from the ps file, by default using
01b6260
 ps2pdf. 
01b6260
-.TP
01b6260
-.B -pdf-
01b6260
+.TP 
01b6260
+.B \-pdf\-
01b6260
 Turn off generation of pdf version of document.  
01b6260
 (This can be used to override a setting in a configuration file.
01b6260
 It may get overridden if some other option requires the generation of
01b6260
 a pdf file.)
01b6260
-.TP
01b6260
-.B -print=dvi, -print=ps, -print=pdf
01b6260
+.TP 
01b6260
+.B \-print=dvi, \-print=ps, \-print=pdf
01b6260
 Define which kind of file is printed.  This option also ensures that
01b6260
 the requisite file is made, and turns on printing.
01b6260
-.TP
01b6260
-.B -ps
01b6260
+.TP 
01b6260
+.B \-ps
01b6260
 Generate postscript version of document.
01b6260
-.TP
01b6260
-.B -ps-
01b6260
+.TP 
01b6260
+.B \-ps\-
01b6260
 Turn off generation of postscript version of document.
01b6260
 This can be used to override a setting in a configuration file.
01b6260
 (It may get overridden by some other option that requires a postscript
01b6260
 file, for example a request for printing.)
01b6260
-.TP
01b6260
-.B -pF
01b6260
+.TP 
01b6260
+.B \-pF
01b6260
 Postscript file filtering.  The argument to this option is a filter
01b6260
 which will generate a filtered postscript file with the extension
01b6260
 ".psF".  All extra processing (e.g. preview, printing) will then be
01b6260
@@ -328,112 +328,112 @@
01b6260
 
01b6260
 Example usage: Use psnup to print two pages on the one page:
01b6260
 
01b6260
-	latexmk -ps -pF 'psnup -2' foo.tex
01b6260
+	latexmk \-ps \-pF 'psnup \-2' foo.tex
01b6260
 
01b6260
 or
01b6260
 
01b6260
-	latexmk -ps -pF "psnup -2" foo.tex
01b6260
+	latexmk \-ps \-pF "psnup \-2" foo.tex
01b6260
 
01b6260
-Whether to use single or double quotes round the "psnup -2" will depend on
01b6260
+Whether to use single or double quotes round the "psnup \-2" will depend on
01b6260
 your command interpreter, in particular on the operating system.
01b6260
-.TP
01b6260
-.B -pv
01b6260
-Run file previewer.  If the \fB-view\fR option is used, this will select
01b6260
+.TP 
01b6260
+.B \-pv
01b6260
+Run file previewer.  If the \fB\-view\fR option is used, this will select
01b6260
 the kind of file to be previewed (dvi, ps or pdf).
01b6260
 Otherwise the viewer views the "highest" kind of file selected, by the
01b6260
-\fB-dvi\fR, \fB-ps\fR, \fB-pdf\fR, \fB-pdfps\fR options, in the
01b6260
+\fB\-dvi\fR, \fB\-ps\fR, \fB\-pdf\fR, \fB\-pdfps\fR options, in the
01b6260
 order dvi, ps, pdf (low to high).
01b6260
 If no file type has been selected, the dvi previewer will be used.
01b6260
-This option is incompatible with the \fB-p\fR and \fB-pvc\fR options,
01b6260
+This option is incompatible with the \fB\-p\fR and \fB\-pvc\fR options,
01b6260
 so it turns them off.
01b6260
-.TP
01b6260
-.B -pv-
01b6260
-Turn off \fB-pv\fR.
01b6260
-.TP
01b6260
-.B -pvc
01b6260
+.TP 
01b6260
+.B \-pv\-
01b6260
+Turn off \fB\-pv\fR.
01b6260
+.TP 
01b6260
+.B \-pvc
01b6260
 Run a file previewer and continually update the .dvi, .ps, and/or .pdf
01b6260
 files whenever changes are made to source files (see the Description
01b6260
 above).  Which of these files is generated and which is viewed is
01b6260
-governed by the other options, and is the same as for the \fB-pv\fR
01b6260
+governed by the other options, and is the same as for the \fB\-pv\fR
01b6260
 option. 
01b6260
-This option also turns on the \fB-f\fR option, since it is normally
01b6260
-desirable in preview-continuous-mode to continue working even if
01b6260
+This option also turns on the \fB\-f\fR option, since it is normally
01b6260
+desirable in preview\-continuous\-mode to continue working even if
01b6260
 errors are found.
01b6260
-The preview-continuous option \fB-pvc\fR can only work with one file.
01b6260
+The preview\-continuous option \fB\-pvc\fR can only work with one file.
01b6260
 So in this case you will normally only specify one filename on
01b6260
 the command line.  It is also incompatible with the 
01b6260
-\fB-p\fR and \fB-pv\fR options, so it turns these options off
01b6260
+\fB\-p\fR and \fB\-pv\fR options, so it turns these options off
01b6260
 
01b6260
 With a good previewer the display will be automatically 
01b6260
-updated.  (Under UNIX "gv -watch" does this for postscript files; it
01b6260
+updated.  (Under UNIX "gv \-watch" does this for postscript files; it
01b6260
 would also do it for pdf files except for an apparent bug in gv that
01b6260
 causes an error when the newly updated pdf file is read.) Other
01b6260
 previewers will need a manual update.  
01b6260
 
01b6260
-Important note: the acroread program on MS-Windows locks the pdf file,
01b6260
+Important note: the acroread program on MS\-Windows locks the pdf file,
01b6260
 and prevents new versions being written, so it is a bad idea to use
01b6260
-acroread to view pdf files in preview-continuous mode.  It is better
01b6260
-to use a dvi or ps viewer, as set by one of the \fB-view=dvi\fR and
01b6260
-\fB-view=ps\fR options.
01b6260
+acroread to view pdf files in preview\-continuous mode.  It is better
01b6260
+to use a dvi or ps viewer, as set by one of the \fB\-view=dvi\fR and
01b6260
+\fB\-view=ps\fR options.
01b6260
 
01b6260
 Note that if \fIlatexmk\fR dies because it encounters an error, the
01b6260
 "forked" previewer will continue to run.  Successive invocations with
01b6260
-the \fB-pvc\fR option will not fork new previewers, but \fIlatexmk\fR
01b6260
+the \fB\-pvc\fR option will not fork new previewers, but \fIlatexmk\fR
01b6260
 will use the existing previewer.  (At least this will happen when
01b6260
 \fIlatexmk\fR is running under an operating system where it knows how
01b6260
 to determine whether an existing previewer is running.)
01b6260
-.TP
01b6260
-.B -pvc-
01b6260
-Turn off \fB-pvc\fR.
01b6260
-.TP
01b6260
-.B -quiet
01b6260
-Same as -silent
01b6260
-.TP
01b6260
-.B -r <rcfile>
01b6260
+.TP 
01b6260
+.B \-pvc\-
01b6260
+Turn off \fB\-pvc\fR.
01b6260
+.TP 
01b6260
+.B \-quiet
01b6260
+Same as \-silent
01b6260
+.TP 
01b6260
+.B \-r <rcfile>
01b6260
 Read the specified initialization file ("RC file") before processing.  
01b6260
-Be careful about the ordering: Standard initialization files --- see
01b6260
-the section below on "Initialization (RC) files" --- are read first,
01b6260
+Be careful about the ordering: Standard initialization files \-\-\- see
01b6260
+the section below on "Initialization (RC) files" \-\-\- are read first,
01b6260
 then the options on the command line in the order they are given.
01b6260
-Thus an initialization file specified with the \fB-r\fR option can
01b6260
+Thus an initialization file specified with the \fB\-r\fR option can
01b6260
 override both the standard initialization files and previously
01b6260
 specified options.  But all of these can be overridden by later
01b6260
 options. 
01b6260
 See below for more details about initialization (RC) files.
01b6260
-.TP
01b6260
-.B -silent
01b6260
+.TP 
01b6260
+.B \-silent
01b6260
 Run commands silently, i.e., with options that reduce the amount of
01b6260
 diagnostics generated.  For example, with the default settings for
01b6260
-commands under UNIX, the command "latex -interaction=batchmode" is used
01b6260
+commands under UNIX, the command "latex \-interaction=batchmode" is used
01b6260
 for latex.
01b6260
 
01b6260
 Also reduce the number of informational messages that \fIlatexmk\fR
01b6260
 generates. 
01b6260
-.TP
01b6260
-.B -v, -version
01b6260
+.TP 
01b6260
+.B \-v, \-version
01b6260
 Print version number of \fILatexmk\fR.
01b6260
-.TP
01b6260
-.B -verbose
01b6260
-Opposite of \fB-silent\fR.  This is the default setting.
01b6260
-.TP
01b6260
-.B -view=default, -view=dvi, -view=ps, -view=pdf
01b6260
+.TP 
01b6260
+.B \-verbose
01b6260
+Opposite of \fB\-silent\fR.  This is the default setting.
01b6260
+.TP 
01b6260
+.B \-view=default, \-view=dvi, \-view=ps, \-view=pdf
01b6260
 Set the kind of file used when previewing is requested (e.g., by the
01b6260
-\fB-pv\fR or \fB-pvc\fR switches).  The default is to view the "highest"
01b6260
+\fB\-pv\fR or \fB\-pvc\fR switches).  The default is to view the "highest"
01b6260
 kind of requested file (in the order dvi, ps, pdf).  
01b6260
-.PP
01b6260
-The preview-continuous option \fB-pvc\fR can only work with one file.
01b6260
+.PP 
01b6260
+The preview\-continuous option \fB\-pvc\fR can only work with one file.
01b6260
 So in this case you will normally only specify one filename on
01b6260
 the command line.  
01b6260
-.PP
01b6260
-Options \fB-p\fR, \fB-pv\fR and \fB-pvc\fR are mutually exclusive.  So
01b6260
+.PP 
01b6260
+Options \fB\-p\fR, \fB\-pv\fR and \fB\-pvc\fR are mutually exclusive.  So
01b6260
 each of these options turns the others off.
01b6260
-.SH EXAMPLES
01b6260
-.nf
01b6260
+.SH "EXAMPLES"
01b6260
+.nf 
01b6260
 .ta 2i
01b6260
 % \fBlatexmk thesis\fR		\fI# run latex enough times to resolve
01b6260
-				cross-references\fR 
01b6260
+				cross\-references\fR 
01b6260
 
01b6260
-% \fBlatexmk -pvc -ps thesis\fR	\fI# run latex enough times to resolve
01b6260
-					cross-references, make a postscript
01b6260
+% \fBlatexmk \-pvc \-ps thesis\fR	\fI# run latex enough times to resolve
01b6260
+					cross\-references, make a postscript
01b6260
 					file, start a previewer.  Then
01b6260
 					watch for changes in the source
01b6260
 					file thesis.tex and any files it
01b6260
@@ -443,55 +443,56 @@
01b6260
 					encounters an error, latexmk will
01b6260
 					keep running.
01b6260
 
01b6260
-% \fBlatexmk -c\fR		\fI# remove .aux, .log, .bbl, .blg, .dep,
01b6260
+% \fBlatexmk \-c\fR		\fI# remove .aux, .log, .bbl, .blg, .dep,
01b6260
 				.dvi, .pdf, .ps & .bbl files\fR
01b6260
-.SH INITIALIZATION (RC) FILES
01b6260
-.PP
01b6260
+.SH "INITIALIZATION (RC) FILES"
01b6260
+.PP 
01b6260
 There are four initialization files ("RC files") that \fIlatexmk\fR can
01b6260
 read at startup: 
01b6260
-.PP
01b6260
+.PP 
01b6260
 1) The system RC file, if it exists.  
01b6260
    On a UNIX system, \fIlatexmk\fR searches for following places for its
01b6260
    system RC file, in the following order, and reads the first it finds:
01b6260
    "/opt/local/share/latexmk/LatexMk",
01b6260
    "/usr/local/share/latexmk/LatexMk",
01b6260
    "/usr/local/lib/latexmk/LatexMk".
01b6260
-   On a MS-WINDOWS system it looks for "C:\\latexmk\\LatexMk".
01b6260
-.PP
01b6260
+   On Fedora Core systems, it only looks for "/etc/latexmk.conf".
01b6260
+   On a MS\-WINDOWS system it looks for "C:\\latexmk\\LatexMk".
01b6260
+.PP 
01b6260
 2) The user's RC file in "$HOME/.latexmkrc", where $HOME is the value
01b6260
 of the environment variable HOME.  On UNIX and clones (including LINUX),
01b6260
 this variable 
01b6260
-is set by the system; on MS-Windows, the user may choose to set it.
01b6260
-.PP
01b6260
+is set by the system; on MS\-Windows, the user may choose to set it.
01b6260
+.PP 
01b6260
 3) The RC file in the current working directory called "latexmkrc".
01b6260
-.PP
01b6260
-4) Any RC file(s) specified on the command line with the \fB-r\fR option.
01b6260
-.PP
01b6260
+.PP 
01b6260
+4) Any RC file(s) specified on the command line with the \fB\-r\fR option.
01b6260
+.PP 
01b6260
 Each RC file is a sequence of Perl commands.  Usually it will be just a
01b6260
-sequence of assignment statements that override the built-in settings of
01b6260
+sequence of assignment statements that override the built\-in settings of
01b6260
 \fILatexmk\fR.  Comment lines are introduced by the "#" character.
01b6260
 
01b6260
 Note that command line options are obeyed in the order in which
01b6260
 they are written; thus any RC file specified on the command line with
01b6260
-the \fB-r\fR option can override previous options but can be itself
01b6260
+the \fB\-r\fR option can override previous options but can be itself
01b6260
 overridden by later options on the command line.  
01b6260
 
01b6260
-.SH RC VARIABLES IN INITIALIZATION FILES
01b6260
-.PP
01b6260
+.SH "RC VARIABLES IN INITIALIZATION FILES"
01b6260
+.PP 
01b6260
 Many of the available variables that can be set are shown in the next
01b6260
 section.  Syntax for the statements in an initialization file is of
01b6260
 the form:
01b6260
-.PP
01b6260
+.PP 
01b6260
 	$bibtex = 'bibtex';
01b6260
-.PP
01b6260
+.PP 
01b6260
 for the setting of a string variable, 
01b6260
-.PP
01b6260
+.PP 
01b6260
 	$preview_mode = 1;
01b6260
-.PP
01b6260
+.PP 
01b6260
 for the setting of a numeric variable, and
01b6260
-.PP
01b6260
+.PP 
01b6260
 	@default_files = ('paper', 'paper1');
01b6260
-.PP
01b6260
+.PP 
01b6260
 for the setting of an array of strings.
01b6260
 
01b6260
 Some of the variables set the names of the commands that \fIlatexmk\fR
01b6260
@@ -499,37 +500,37 @@
01b6260
 
01b6260
 \fB"Detaching" a command\fR: If a command is to be run detached this
01b6260
 is indicated by preceding it with "start", as in
01b6260
-.PP
01b6260
+.PP 
01b6260
 	$dvi_previewer = 'start xdvi';
01b6260
-.PP
01b6260
+.PP 
01b6260
 This will be translated to whatever is appropriate for your operating
01b6260
 system. (Note: in some circumstances, \fIlatex\fR will always run a
01b6260
 command detached.  This is the case for a previewer in preview
01b6260
 continuous mode, since otherwise previewing continuously makes no
01b6260
 sense.)
01b6260
 
01b6260
-\fBCommand names containing spaces\fR: Under MS-Windows it is common
01b6260
+\fBCommand names containing spaces\fR: Under MS\-Windows it is common
01b6260
 that the name of a command includes spaces, since software is often
01b6260
 installed in a subdirectory of "C:\Program Files".  Such command names
01b6260
 should be enclosed in double quotes, as in
01b6260
 
01b6260
   $lpr_pdf = '"c:/Program Files/Ghostgum/gsview/gsview32.exe" /p';
01b6260
 
01b6260
-\fBUsing MS-Windows file associations\fR: A useful trick under modern
01b6260
-versions of MS-Windows (e.g., WinXP) is to use just the command
01b6260
+\fBUsing MS\-Windows file associations\fR: A useful trick under modern
01b6260
+versions of MS\-Windows (e.g., WinXP) is to use just the command
01b6260
 'start' by itself:
01b6260
-.PP
01b6260
+.PP 
01b6260
 	$dvi_previewer = 'start';
01b6260
-.PP
01b6260
-Under recent versions of MS-Windows, this will cause to be run
01b6260
+.PP 
01b6260
+Under recent versions of MS\-Windows, this will cause to be run
01b6260
 whatever program the system has associated with dvi files.  (The same
01b6260
 applies for a postscript viewer and a pdf viewer.)  
01b6260
 
01b6260
 \fBNot using a certain command\fR: If a command is not to be run, the
01b6260
 command name NONE is used, as in
01b6260
-.PP
01b6260
+.PP 
01b6260
 	$lpr  = 'NONE lpr';
01b6260
-.PP
01b6260
+.PP 
01b6260
 This means that an appropriate command has not been configured.  The
01b6260
 string after the 'NONE' is effectively a comment.
01b6260
 \fBOptions to commands\fR:
01b6260
@@ -538,9 +539,9 @@
01b6260
 Suppose you want \fIlatexmk\fR to use latex with source specials
01b6260
 enabled.  Then you might use the following line in an initialization
01b6260
 file:
01b6260
-.PP
01b6260
-	$latex = 'latex --src-specials';
01b6260
-.PP
01b6260
+.PP 
01b6260
+	$latex = 'latex \-\-src\-specials';
01b6260
+.PP 
01b6260
 
01b6260
 \fBAdvanced tricks\fR: Normally \fIlatexmk\fR assumes certain behavior
01b6260
 for commands and in particular it assumes certain kinds and ordering
01b6260
@@ -548,50 +549,50 @@
01b6260
 example you might want to use Distiller to convert postscript files to
01b6260
 pdf files.  You cannot simply change the name of the ps2pdf conversion
01b6260
 program, as in
01b6260
-.PP
01b6260
+.PP 
01b6260
 	$ps2pdf = 'distiller';  ######### WRONG
01b6260
-.PP
01b6260
+.PP 
01b6260
 because the command line arguments will be wrong.  In such a
01b6260
-situation, your best bet is to write a batch file (under MS-Windows) or
01b6260
+situation, your best bet is to write a batch file (under MS\-Windows) or
01b6260
 a script (under UNIX) that will do the conversion.  Then you set
01b6260
-.PP
01b6260
+.PP 
01b6260
 	$ps2pdf = 'special_script';
01b6260
-.PP
01b6260
+.PP 
01b6260
 Your script will be invoked by \fIlatexmk\fR in its usual way as
01b6260
 "Special_script file.ps file.pdf".  Your script calls Distiller with
01b6260
 Distiller's correct arguments.
01b6260
 
01b6260
-.SH LIST OF RC VARIABLES IN INITIALIZATION FILES
01b6260
-.PP
01b6260
+.SH "LIST OF RC VARIABLES IN INITIALIZATION FILES"
01b6260
+.PP 
01b6260
 Default values are indicated in brackets.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $banner [0]
01b6260
 If nonzero, the banner message is printed across each page when converting
01b6260
 the dvi file to postscript.  Without modifying $banner_message, this is
01b6260
-equivalent to specifying the \fB-d\fR option.
01b6260
+equivalent to specifying the \fB\-d\fR option.
01b6260
 
01b6260
 Note that if \fB$banner\fR is nonzero, the \fB$postscript_mode\fR is
01b6260
 assumed and the postscript file is always generated, even if it is newer
01b6260
 than the dvi file.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $banner_intensity [0.95]
01b6260
-Equivalent to the \fB-bi\fR option, this is a decimal number between 0
01b6260
+Equivalent to the \fB\-bi\fR option, this is a decimal number between 0
01b6260
 and 1 that specifies how dark to print the banner message. 0 is black,
01b6260
 1 is white.  The default is just right if your toner cartridge isn't
01b6260
 running too low.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $banner_message ["DRAFT"]
01b6260
 The banner message to print across each page when converting the dvi
01b6260
-file to postscript.  This is equivalent to the \fB-bm\fR option.
01b6260
-.TP
01b6260
+file to postscript.  This is equivalent to the \fB\-bm\fR option.
01b6260
+.TP 
01b6260
 .B $banner_scale [220.0]
01b6260
 A decimal number that specifies how large the banner message will be
01b6260
 printed.  Experimentation is necessary to get the right scale for your
01b6260
 message, as a rule of thumb the scale should be about equal to 1100
01b6260
 divided by the number of characters in the message.  The Default is
01b6260
 just right for 5 character messages.  This is equivalent to the
01b6260
-\fB-bs\fR option.
01b6260
-.TP
01b6260
+\fB\-bs\fR option.
01b6260
+.TP 
01b6260
 .B @BIBINPUTS
01b6260
 This is an array variable that specifies directories where
01b6260
 \fIlatexmk\fR should look for .bib files.  By default it is set from
01b6260
@@ -614,13 +615,13 @@
01b6260
 
01b6260
 This variable is likely to become obsolete in a future version of
01b6260
 \fIlatexmk\fR which uses a better method of searching for files.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $bibtex ["bibtex"]
01b6260
 The BibTeX processing program.
01b6260
-.TP
01b6260
-.B $bibtex_silent_switch ["-terse"]
01b6260
+.TP 
01b6260
+.B $bibtex_silent_switch ["\-terse"]
01b6260
 \fBSwitch(es)\fR for the BibTeX processing program when silent mode is on.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $cleanup_mode [0]
01b6260
 If nonzero, specifies cleanup mode: 1 for full cleanup, 2 for  cleanup
01b6260
 except for dvi, ps and pdf files, 3 for cleanup except for dep and aux
01b6260
@@ -628,21 +629,21 @@
01b6260
 and $clean_full_ext variables.)
01b6260
 
01b6260
 This variable is equivalent to specifying one of
01b6260
-the \fB-c\fR, \fB-c1\fR, or \fB-C\fR options.  But there should be no need
01b6260
+the \fB\-c\fR, \fB\-c1\fR, or \fB\-C\fR options.  But there should be no need
01b6260
 to set this variable from an RC file.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $clean_ext [""]
01b6260
 Extra extensions of files for \fIlatexmk\fR to remove when any of the
01b6260
-clean-up options (\fB-c\fR, \fB-c1\fR, or \fB-C\fR) is selected.
01b6260
-.TP
01b6260
+clean\-up options (\fB\-c\fR, \fB\-c1\fR, or \fB\-C\fR) is selected.
01b6260
+.TP 
01b6260
 .B $clean_full_ext [""]
01b6260
-Extra extensions of files for \fIlatexmk\fR to remove when the \fB-C\fR
01b6260
+Extra extensions of files for \fIlatexmk\fR to remove when the \fB\-C\fR
01b6260
 option is selected, i.e., extensions of files to remove when the .dvi,
01b6260
-etc files are to be cleaned-up.
01b6260
-.TP
01b6260
+etc files are to be cleaned\-up.
01b6260
+.TP 
01b6260
 .B @cus_dep_list [()]
01b6260
-Custom dependency list -- see section on "Custom Dependencies".
01b6260
-.TP
01b6260
+Custom dependency list \-\- see section on "Custom Dependencies".
01b6260
+.TP 
01b6260
 .B @default_files [('*.tex')]
01b6260
 Default list of files to be processed.  
01b6260
 
01b6260
@@ -667,30 +668,30 @@
01b6260
 
01b6260
 Note that more than file may be given, and that the default extension
01b6260
 is '.tex'.  Wild cards are allowed.  
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $dvi_filter [empty]
01b6260
 The dvi file filter to be run on the newly produced dvi file before
01b6260
-other processing.  Equivalent to specifying the \fB-dF\fR option.
01b6260
-.TP
01b6260
+other processing.  Equivalent to specifying the \fB\-dF\fR option.
01b6260
+.TP 
01b6260
 .B $dvi_previewer ["start xdvi" under UNIX]
01b6260
-The command to invoke a dvi-previewer.
01b6260
-[Default is "start" under MS-WINDOWS; under more recent versions of
01b6260
+The command to invoke a dvi\-previewer.
01b6260
+[Default is "start" under MS\-WINDOWS; under more recent versions of
01b6260
 Windows, this will cause to be run whatever command the system has
01b6260
 associated with .dvi files.] 
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $dvi_previewer_landscape ["start xdvi"]
01b6260
-The command to invoke a dvi-previewer in landscape mode.
01b6260
-[Default is "start" under MS-WINDOWS; under more recent versions of
01b6260
+The command to invoke a dvi\-previewer in landscape mode.
01b6260
+[Default is "start" under MS\-WINDOWS; under more recent versions of
01b6260
 Windows, this will cause to be run whatever command the system has
01b6260
 associated with .dvi files.] 
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $dvipdf ["dvipdf"]
01b6260
 Command to convert dvi to pdf file.  
01b6260
 
01b6260
 WARNING1: The default dvipdf
01b6260
 script generates pdf files with bitmapped fonts, which don't look
01b6260
 good when viewed by acroread.  The script should be modified to give
01b6260
-dvips the options "-P pdf" to ensure that type 1 fonts are used in the
01b6260
+dvips the options "\-P pdf" to ensure that type 1 fonts are used in the
01b6260
 pdf file.
01b6260
 
01b6260
 WARNING 2: If you want to use one of the programs dvipdfm or dvipdfmx
01b6260
@@ -700,24 +701,24 @@
01b6260
 the command line.  See the extra_scripts directory of the latexmk
01b6260
 distribution, where the necessary scripts dvipdfm_call, etc are to be
01b6260
 found, together with instructions for their use in the file README1.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $dvips ["dvips"]
01b6260
 The program to used as a filter to convert a .dvi file to a .ps file.  
01b6260
 If pdf is going to be generated from pdf, then the value of the
01b6260
-$dvips_pdf_switch --- see below --- will be appended.
01b6260
-.TP
01b6260
-.B $dvips_landscape ["dvips -tlandscape"]
01b6260
+$dvips_pdf_switch \-\-\- see below \-\-\- will be appended.
01b6260
+.TP 
01b6260
+.B $dvips_landscape ["dvips \-tlandscape"]
01b6260
 The program to used as a filter to convert a .dvi file to a .ps file
01b6260
 in landscape mode.
01b6260
-.TP
01b6260
-.B $dvips_pdf_switch ["-P pdf"]
01b6260
+.TP 
01b6260
+.B $dvips_pdf_switch ["\-P pdf"]
01b6260
 \fBSwitch(es)\fR for dvips program when pdf file is to be generated from
01b6260
 ps file. 
01b6260
-.TP
01b6260
-.B $dvips_silent_switch ["-q"]
01b6260
+.TP 
01b6260
+.B $dvips_silent_switch ["\-q"]
01b6260
 \fBSwitch(es)\fR for dvips program when silent mode is on.
01b6260
-.TP
01b6260
-.B $dvi_update_method [2 under UNIX, 1 under MS-Windows]
01b6260
+.TP 
01b6260
+.B $dvi_update_method [2 under UNIX, 1 under MS\-Windows]
01b6260
 How the dvi viewer updates its display when the dvi file has changed.
01b6260
   0 => update is automatic, 
01b6260
   1=> manual update by user, which may only mean a mouse click on the
01b6260
@@ -725,35 +726,35 @@
01b6260
    2 => Send the signal, whose number is in the variable
01b6260
 $dvi_update_signal.  The default value under UNIX is suitable for xdvi.
01b6260
    3 => Viewer cannot do an update, because it locks the file. (As with
01b6260
-acroread under MS-Windows.)
01b6260
-.TP
01b6260
-.B $dvi_update_signal [Under UNIX: SIGUSR1, which is a system-dependent value]
01b6260
+acroread under MS\-Windows.)
01b6260
+.TP 
01b6260
+.B $dvi_update_signal [Under UNIX: SIGUSR1, which is a system\-dependent value]
01b6260
 The number of the signal that is sent to the dvi viewer when it is
01b6260
-updated by sending a signal -- see $dvi_update_method.  The default
01b6260
+updated by sending a signal \-\- see $dvi_update_method.  The default
01b6260
 value is the one appropriate for xdvi on a UNIX system.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $force_generate_and_save_includes [0]
01b6260
 If nonzero, specifies that the dependency file should always be
01b6260
-generated.  Equivalent to specifying the \fB-I\fR option.
01b6260
-.TP
01b6260
+generated.  Equivalent to specifying the \fB\-I\fR option.
01b6260
+.TP 
01b6260
 .B $force_mode [0]
01b6260
 If nonzero, continue processing past minor \fIlatex\fR errors 
01b6260
 including unrecognized cross references.  Equivalent to specifying the
01b6260
-\fB-f\fR option.
01b6260
-Note that specifying the \fB-pvc\fR sets $forec_mode to 1.
01b6260
-.TP
01b6260
+\fB\-f\fR option.
01b6260
+Note that specifying the \fB\-pvc\fR sets $forec_mode to 1.
01b6260
+.TP 
01b6260
 .B $force_include_mode [0]
01b6260
 If nonzero, force \fIlatexmk\fR to include files that don't exist when
01b6260
 generating dependency files.  A warning is produced instead of an error
01b6260
 message and the program terminating.  If the file name is not an
01b6260
 absolute path, it is assumed to be relative to the current working
01b6260
-directory.  Equivalent to specifying the \fB-F\fR option.
01b6260
-.TP
01b6260
+directory.  Equivalent to specifying the \fB\-F\fR option.
01b6260
+.TP 
01b6260
 .B $generate_and_save_includes [0]
01b6260
 If nonzero, generates dependency file if it does not exist or is older
01b6260
 than the root file (the base .tex file).  Equivalent to specifying
01b6260
-the \fB-i\fR option.
01b6260
-.TP
01b6260
+the \fB\-i\fR option.
01b6260
+.TP 
01b6260
 .B @generated_exts [( 'ind', 'lof', 'lot', 'out', 'toc')]
01b6260
 This contains a list of extensions for files that are generated
01b6260
 (directly or indirectly) during a LaTeX run and that are read in by
01b6260
@@ -761,7 +762,7 @@
01b6260
 from the .log file, it will ignore files with the extensions in
01b6260
 \fI@generated_exts\fR, since NORMALLY they are not true source files,
01b6260
 and the time stamps of these may mislead \fIlatexmk\fR as to whether
01b6260
-the real output files are up-to-date.
01b6260
+the real output files are up\-to\-date.
01b6260
 
01b6260
 The extensions "aux" and "bbl" are always excluded from the dependents,
01b6260
 because they get special treatment, so they do not need to be in this
01b6260
@@ -775,43 +776,43 @@
01b6260
 
01b6260
 adds the extension 'end' to the list of predefined generated
01b6260
 extensions. 
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $go_mode [0]
01b6260
 If nonzero, process files regardless of timestamps.  Equivalent to the
01b6260
-\fB-g\fR option.
01b6260
-.TP
01b6260
+\fB\-g\fR option.
01b6260
+.TP 
01b6260
 .B $includes_from_log [1]
01b6260
 If nonzero, extract dependency information from the log file, rather than
01b6260
-the source TeX file(s); this is equivalent to the \fB-il\fR option.
01b6260
+the source TeX file(s); this is equivalent to the \fB\-il\fR option.
01b6260
 If zero, extract dependency information by scanning the source TeX file(s);
01b6260
-this is equivalent to the \fB-it\fR option. 
01b6260
-.TP
01b6260
+this is equivalent to the \fB\-it\fR option. 
01b6260
+.TP 
01b6260
 .B $index_mode [0 and then as determined from the results of a run]
01b6260
 If nonzero, run \fImakeindex\fR to produce index of document.  
01b6260
 Normally you should not need to set this variable in an RC file, since
01b6260
 latexmk determines automatically if \fImakeindex\fR needs to be run.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $landscape_mode [0]
01b6260
 If nonzero, run in landscape mode, using the landscape mode previewers and
01b6260
-dvi to postscript converters.  Equivalent to the \fB-l\fR option.
01b6260
-.TP
01b6260
+dvi to postscript converters.  Equivalent to the \fB\-l\fR option.
01b6260
+.TP 
01b6260
 .B $latex ["latex"]
01b6260
 The LaTeX processing program.  Note that as with other programs, you
01b6260
 can use this variable not just to change the name of the program used,
01b6260
 but also specify options to the program.  E.g.,
01b6260
 
01b6260
-	$latex = 'latex --src-specials';
01b6260
-.TP
01b6260
-.B $latex_silent_switch ["-interaction=batchmode"]
01b6260
+	$latex = 'latex \-\-src\-specials';
01b6260
+.TP 
01b6260
+.B $latex_silent_switch ["\-interaction=batchmode"]
01b6260
 \fBSwitch(es)\fR for the LaTeX processing program when silent mode is on.
01b6260
-Under MS-Windows, the default value is changed to 
01b6260
-"-interaction=batchmode -c-style-errors", as used by MikTeX and fpTeX.
01b6260
-.TP
01b6260
+Under MS\-Windows, the default value is changed to 
01b6260
+"\-interaction=batchmode \-c\-style\-errors", as used by MikTeX and fpTeX.
01b6260
+.TP 
01b6260
 .B $lpr ["lpr"]
01b6260
-[Default is "NONE lpr" under MS-WINDOWS.]
01b6260
+[Default is "NONE lpr" under MS\-WINDOWS.]
01b6260
 The printing program to print postscript files.
01b6260
 
01b6260
-Under MS-Windows (unlike UNIX/LINUX), there is no standard program for
01b6260
+Under MS\-Windows (unlike UNIX/LINUX), there is no standard program for
01b6260
 printing files.  But there are ways you can do it.  For example, if
01b6260
 you have gsview installed, you can use it with the option '/p':
01b6260
 
01b6260
@@ -822,14 +823,14 @@
01b6260
 is necessary because one part of the command name ('Program Files')
01b6260
 contains a space which would otherwise be misinterpreted. 
01b6260
 
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $lpr_dvi ["NONE lpr_dvi"]
01b6260
 The printing program to print dvi files.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $lpr_pdf ["NONE lpr_pdf"]
01b6260
 The printing program to print pdf files.
01b6260
 
01b6260
-Under MS-Windows you could set this to use gsview, if it is installed,
01b6260
+Under MS\-Windows you could set this to use gsview, if it is installed,
01b6260
 e.g.,
01b6260
 
01b6260
     $lpr = '"c:/Program Files/Ghostgum/gsview/gsview32.exe" /p';
01b6260
@@ -839,18 +840,18 @@
01b6260
 is necessary because one part of the command name ('Program Files')
01b6260
 contains a space which would otherwise be misinterpreted. 
01b6260
 
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $makeindex ["makeindex"]
01b6260
 The index processing program.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $new_viewer_always [0]
01b6260
 This variable applies to \fIlatexmk\fR \fBonly\fR in
01b6260
-continuous-preview mode.  If $new_viewer_always is 0,
01b6260
+continuous\-preview mode.  If $new_viewer_always is 0,
01b6260
 \fIlatexmk\fR will check for a previously running previewer on the
01b6260
 same file, and if one is running will not start a new one.  If
01b6260
-$new_viewer_always is non-zero, this check will be skipped, and
01b6260
+$new_viewer_always is non\-zero, this check will be skipped, and
01b6260
 \fIlatexmk\fR will behave as if no viewer is running.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $pdf_mode [0]
01b6260
 If zero, do NOT generate a pdf version of the document.
01b6260
 If equal to 1, generate a pdf version of the document using pdflatex.  
01b6260
@@ -858,148 +859,148 @@
01b6260
 file, by using the command specified by the $ps2pdf variable.  
01b6260
 If equal to 3, generate a pdf version of the document from the dvi
01b6260
 file, by using the command specified by the $dvipdf variable.  
01b6260
-Equivalent to the \fB-pdf-\fR, \fB-pdf\fR, \fB-pdfdvi\fR, 
01b6260
-\fB-pdfps\fR options,
01b6260
+Equivalent to the \fB\-pdf\-\fR, \fB\-pdf\fR, \fB\-pdfdvi\fR, 
01b6260
+\fB\-pdfps\fR options,
01b6260
 and is stored in the dependency file
01b6260
 if generated.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $pdflatex ["pdflatex"]
01b6260
 The LaTeX processing program in the version that makes a pdf file instead
01b6260
 of a dvi file.
01b6260
-.TP
01b6260
-.B $pdflatex_silent_switch  ["-interaction=batchmode"]
01b6260
+.TP 
01b6260
+.B $pdflatex_silent_switch  ["\-interaction=batchmode"]
01b6260
 \fBSwitch(es)\fR for the LaTeX processing program when silent mode is on.
01b6260
-Under MS-Windows, the default value is changed to 
01b6260
-"-interaction=batchmode -c-style-errors", as used by MikTeX and fpTeX.
01b6260
-.TP
01b6260
+Under MS\-Windows, the default value is changed to 
01b6260
+"\-interaction=batchmode \-c\-style\-errors", as used by MikTeX and fpTeX.
01b6260
+.TP 
01b6260
 .B $pdf_previewer ["start acroread"]
01b6260
-The command to invoke a pdf-previewer.
01b6260
-[Default is changed to "start" on MS-WINDOWS; under more recent versions of
01b6260
+The command to invoke a pdf\-previewer.
01b6260
+[Default is changed to "start" on MS\-WINDOWS; under more recent versions of
01b6260
 Windows, this will cause to be run whatever command the system has
01b6260
 associated with .pdf files.]  
01b6260
 
01b6260
-Potential problem under MS-Windows:
01b6260
+Potential problem under MS\-Windows:
01b6260
 if acroread is used as the pdf previewer, and it is
01b6260
 actually viewing a pdf file, the pdf file cannot be updated.  Thus
01b6260
 makes acroread a bad choice of previewer if you use \fIlatexmk\fR's
01b6260
-previous-continuous mode (option \fB-pvc\fR) under MS-windows.
01b6260
+previous\-continuous mode (option \fB\-pvc\fR) under MS\-windows.
01b6260
 This problem does not occur if ghostview, gv or gsview is used to
01b6260
 view pdf files.
01b6260
-.TP
01b6260
-.B $pdf_update_method [1 under UNIX, 3 under MS-Windows]
01b6260
+.TP 
01b6260
+.B $pdf_update_method [1 under UNIX, 3 under MS\-Windows]
01b6260
 How the pdf viewer updates its display when the pdf file has
01b6260
 changed. See $dvi_update_method for the codes.
01b6260
-Note that acroread under MS-Windows (but not UNIX) locks the pdf file, so
01b6260
+Note that acroread under MS\-Windows (but not UNIX) locks the pdf file, so
01b6260
 the default value is then 3.  
01b6260
-.TP
01b6260
-.B $pdf_update_signal [Under UNIX: SIGHUP, which is a system-dependent value]
01b6260
+.TP 
01b6260
+.B $pdf_update_signal [Under UNIX: SIGHUP, which is a system\-dependent value]
01b6260
 The number of the signal that is sent to the pdf viewer when it is
01b6260
-updated by sending a signal -- see $pdf_update_method.  The default
01b6260
+updated by sending a signal \-\- see $pdf_update_method.  The default
01b6260
 value is the one appropriate for gv on a UNIX system.
01b6260
-.TP
01b6260
-.B $pid_position = [1 under UNIX, -1 under MS-Windows]     
01b6260
+.TP 
01b6260
+.B $pid_position = [1 under UNIX, \-1 under MS\-Windows]     
01b6260
 Command used to get all the processes currently run by the user.  
01b6260
-The -pvc option uses the command specified by the variable $pscmd to
01b6260
+The \-pvc option uses the command specified by the variable $pscmd to
01b6260
 determine if there is an already running previewer, and to find the
01b6260
 process ID (needed if \fIlatexmk\fR needs to signal the previewer about
01b6260
 file changes).  The variable $pid_position is used to specify which word
01b6260
 in lines of the output from $pscmd corresponds to the process ID.  The
01b6260
 first word in the line is numbered 0.  The default value of 1 (2nd word in
01b6260
-line) is correct for Solaris 2.6 and Linux.  Setting the variable to -1 is
01b6260
+line) is correct for Solaris 2.6 and Linux.  Setting the variable to \-1 is
01b6260
 used to indicate that $pscmd is not to be used.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $postscript_mode [0]
01b6260
 If nonzero, generate a postscript version of the document.  
01b6260
-Equivalent to the \fB-ps\fR option.
01b6260
-.TP
01b6260
+Equivalent to the \fB\-ps\fR option.
01b6260
+.TP 
01b6260
 .B $preview_continuous_mode [0]
01b6260
 If nonzero, run a previewer to view the document, and
01b6260
-continue running \fIlatexmk\fR to keep .dvi up-to-date.  Equivalent to
01b6260
-the \fB-pvc\fR option.
01b6260
+continue running \fIlatexmk\fR to keep .dvi up\-to\-date.  Equivalent to
01b6260
+the \fB\-pvc\fR option.
01b6260
 Which previewer is run depends on the other settings, see the command
01b6260
-line options $\fB-view=\fR.  
01b6260
-.TP
01b6260
+line options $\fB\-view=\fR.  
01b6260
+.TP 
01b6260
 .B $preview_mode [0]
01b6260
 If nonzero, run a previewer to preview the document.
01b6260
-Equivalent to the \fB-pv\fR option.  
01b6260
+Equivalent to the \fB\-pv\fR option.  
01b6260
 Which previewer is run depends on the other settings, see the command
01b6260
-line options $\fB-view=\fR.  
01b6260
-.TP
01b6260
+line options $\fB\-view=\fR.  
01b6260
+.TP 
01b6260
 .B $printout_mode [0]
01b6260
 If nonzero, print the document using \fIlpr\fR.  Equivalent to the
01b6260
-\fB-p\fR option.  Recommend that this is not set from an RC file or
01b6260
+\fB\-p\fR option.  Recommend that this is not set from an RC file or
01b6260
 you could waste lots of paper.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $print_type = ["ps"]
01b6260
 Type of file to printout: possibilities are "dvi", "none", "pdf", or
01b6260
 "ps".  
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $pscmd 
01b6260
-[On UNIX, the default is "ps -f -u $ENV{USER}", with changes for Linux
01b6260
-and OS-X.
01b6260
-On MS-WINDOWS the default in "NONE pscmd".]
01b6260
+[On UNIX, the default is "ps \-f \-u $ENV{USER}", with changes for Linux
01b6260
+and OS\-X.
01b6260
+On MS\-WINDOWS the default in "NONE pscmd".]
01b6260
 Command used to get all the processes currently run by the user.  This
01b6260
-is used by the -pvc option to determine if there is an already running
01b6260
+is used by the \-pvc option to determine if there is an already running
01b6260
 previewer. 
01b6260
 The command line options for this command under the different flavors of
01b6260
 UNIX are quite variable.  The command given above is suitable for Solaris
01b6260
 2.6 and above, and \fBlatexmk\fR corrects it for Linux and OSX.
01b6260
 
01b6260
 NOTE: The variable $pid_position must also be set: see its description.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $ps2pdf ["ps2pdf"]
01b6260
 Command to convert ps to pdf file.  
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $ps_filter [empty]
01b6260
 The postscript file filter to be run on the newly produced postscript
01b6260
-file before other processing.  Equivalent to specifying the \fB-pF\fR
01b6260
+file before other processing.  Equivalent to specifying the \fB\-pF\fR
01b6260
 option.
01b6260
-.TP
01b6260
-.B $ps_previewer ["start gv -watch"]
01b6260
-The command to invoke a ps-previewer.
01b6260
-[Default is "start" on MS-WINDOWS; under more recent versions of
01b6260
+.TP 
01b6260
+.B $ps_previewer ["start gv \-watch"]
01b6260
+The command to invoke a ps\-previewer.
01b6260
+[Default is "start" on MS\-WINDOWS; under more recent versions of
01b6260
 Windows, this will cause to be run whatever command the system has
01b6260
 associated with .ps files.]  
01b6260
 
01b6260
-Note that gv with the -watch option updates its display whenever the
01b6260
+Note that gv with the \-watch option updates its display whenever the
01b6260
 postscript file changes, whereas ghostview does not. 
01b6260
-.TP
01b6260
-.B $ps_previewer_landscape ["start gv -swap -watch"]
01b6260
-The command to invoke a ps-previewer in landscape mode.
01b6260
-[Default is "start" on MS-WINDOWS; under more recent versions of
01b6260
+.TP 
01b6260
+.B $ps_previewer_landscape ["start gv \-swap \-watch"]
01b6260
+The command to invoke a ps\-previewer in landscape mode.
01b6260
+[Default is "start" on MS\-WINDOWS; under more recent versions of
01b6260
 Windows, this will cause to be run whatever command the system has
01b6260
 associated with .ps files.]  
01b6260
-.TP
01b6260
-.B $ps_update_method [0 under UNIX, 1 under MS-Windows]
01b6260
+.TP 
01b6260
+.B $ps_update_method [0 under UNIX, 1 under MS\-Windows]
01b6260
 How the postscript viewer updates its display when the ps file has
01b6260
 changed. See $dvi_update_method for the codes.
01b6260
-.TP
01b6260
-.B $ps_update_signal [Under UNIX: SIGHUP, which is a system-dependent value]
01b6260
+.TP 
01b6260
+.B $ps_update_signal [Under UNIX: SIGHUP, which is a system\-dependent value]
01b6260
 The number of the signal that is sent to the pdf viewer when it is
01b6260
-updated by sending a signal -- see $ps_update_method.  The default
01b6260
+updated by sending a signal \-\- see $ps_update_method.  The default
01b6260
 value is the one appropriate for gv on a UNIX system.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B $sleep_time [2]
01b6260
 The time to sleep (in seconds) between checking for source file 
01b6260
-changes when running the \fB-pvc\fR option.
01b6260
-.TP
01b6260
+changes when running the \fB\-pvc\fR option.
01b6260
+.TP 
01b6260
 .B $texfile_search [""]
01b6260
 This is an obsolete variable, replaced by the \fI@default_files\fR
01b6260
-variable -- see the description of \fI@default_files\fR for how it
01b6260
+variable \-\- see the description of \fI@default_files\fR for how it
01b6260
 works.  
01b6260
 
01b6260
 For backward compatibility, if you choose to set it,
01b6260
-\fI$texfile_search\fR is a string of space-separated filenames, and
01b6260
+\fI$texfile_search\fR is a string of space\-separated filenames, and
01b6260
 then \fIlatexmk\fR replaces \fI@default_files\fR with the filenames in
01b6260
 \fI$texfile_search\fR to which is added '*.tex'.
01b6260
-.TP
01b6260
-.B $tmpdir ["/tmp" under UNIX, value of environment variable TEMP under MS-Windows]
01b6260
+.TP 
01b6260
+.B $tmpdir ["/tmp" under UNIX, value of environment variable TEMP under MS\-Windows]
01b6260
 Directory to store temporary files that \fIlatexmk\fR generates while
01b6260
 running.  Currently it only has a minor use, when making a banner to
01b6260
 insert in a postscript file.  There should be no trailing separator.
01b6260
 It should not be necessary to change this value except when running
01b6260
 under Cygwin.
01b6260
-
01b6260
+.TP 
01b6260
 .B @TEXINPUTS
01b6260
 This is an array variable that under circumstances specifies
01b6260
 directories where \fIlatexmk\fR should look for .tex files.  By
01b6260
@@ -1008,58 +1009,58 @@
01b6260
 element list consisting of the current directory is set.  The format
01b6260
 is as for the @BIBINPUTS variable (qv).
01b6260
 
01b6260
-This variable is almost obsolete.  It is only used when the \fB-it\fR
01b6260
+This variable is almost obsolete.  It is only used when the \fB\-it\fR
01b6260
 option is used to force \fIlatexmk\fR to scan the .tex files to find
01b6260
 the input files instead of scanning the .log file, which it does by
01b6260
 default. Since the .log file contains full path information, you
01b6260
 should not need, normally, to set the @TEXINPUTS variable.
01b6260
-.SH CUSTOM DEPENDENCIES
01b6260
-.PP
01b6260
+.SH "CUSTOM DEPENDENCIES"
01b6260
+.PP 
01b6260
 In any RC file a set of custom dependencies can be set up to convert a
01b6260
 file with one extension to a file with another.  An example use of this
01b6260
-would be to allow \fIlatexmk\fR to convert a \fI.fig\fR file to
01b6260
+would be to allow \fIlatexmk\fR to convert a \fI.fi g\fR file to
01b6260
 \fI.eps\fR to be included in the \fI.tex\fR file.  A table of custom
01b6260
 dependencies are set up by using the \fB@cus_dep_list\fR array.  Each
01b6260
 string in the array has four arguments, separated by a space:
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B from extension:
01b6260
 The extension of the file we are converting from (e.g. "fig").
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B to extension:
01b6260
 The extension of the file we are converting to (e.g. "eps").
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B must:
01b6260
-If non-zero, the file we are converting from \fBmust\fR exist, if it
01b6260
+If non\-zero, the file we are converting from \fBmust\fR exist, if it
01b6260
 doesn't exist \fIlatexmk\fR will give an error message and exit unless
01b6260
-the \fB-f\fR option is specified.  If \fImust\fR is zero and the file
01b6260
+the \fB\-f\fR option is specified.  If \fImust\fR is zero and the file
01b6260
 we are converting from doesn't exist, then no action is taken.
01b6260
-.TP
01b6260
+.TP 
01b6260
 .B function:
01b6260
 The name of the subroutine that \fIlatexmk\fR should call to perform the
01b6260
 file conversion.  The first argument to the subroutine is the base name
01b6260
 of the file to be converted without any extension.  The subroutines are
01b6260
 declared in the syntax of \fIperl\fR.  The function should return 0 if
01b6260
 it was successful and a nonzero number if it failed.
01b6260
-.PP
01b6260
-Example in an RC file to convert a \fI.fig\fR file to a \fI.eps\fR file:
01b6260
+.PP 
01b6260
+Example in an RC file to convert a \fI.fi g\fR file to a \fI.eps\fR file:
01b6260
 
01b6260
 @cus_dep_list = (@cus_dep_list, "fig eps 0 fig2eps");
01b6260
 
01b6260
 sub fig2eps
01b6260
 {
01b6260
-  system("fig2dev -Lps $_[0].fig $_[0].eps");
01b6260
+  system("fig2dev \-Lps $_[0].fi g $_[0].eps");
01b6260
 }
01b6260
 
01b6260
-The subroutine \fIfig2eps\fR will only be called if the \fI.fig\fR file
01b6260
+The subroutine \fIfig2eps\fR will only be called if the \fI.fi g\fR file
01b6260
 was modified more recently then the \fI.eps\fR file, or the \fI.eps\fR
01b6260
 file does not exist.
01b6260
 
01b6260
-If the return value of the subroutine is non-zero, then \fIlatexmk\fR
01b6260
+If the return value of the subroutine is non\-zero, then \fIlatexmk\fR
01b6260
 will assume an error occurred during the execution of the subroutine.
01b6260
 
01b6260
-.SH SEE ALSO
01b6260
+.SH "SEE ALSO"
01b6260
 latex(1), bibtex(1).
01b6260
-.SH BUGS
01b6260
+.SH "BUGS"
01b6260
 Search for .bib files is not correct if they are not in the current
01b6260
 directory; the problem is that the log file generated by bibtex does not
01b6260
 give the full path to the .bib files.  The easiest fix at the moment is to
01b6260
@@ -1080,27 +1081,27 @@
01b6260
 Gv on UNIX/LINUX works for both postscript and pdf.
01b6260
 Ghostview on UNIX/LINUX needs a manual update (reopen); it views
01b6260
 postscript and pdf. 
01b6260
-Gsview under MS-Windows works for both postscript and pdf, 
01b6260
+Gsview under MS\-Windows works for both postscript and pdf, 
01b6260
 but only reads the updated file when its screen is refreshed.
01b6260
 Acroread under UNIX/LINUX views pdf, but the file needs to be closed
01b6260
 and reopened to view an updated version.
01b6260
-Under MS-Windows, acroread locks its input file and so the
01b6260
+Under MS\-Windows, acroread locks its input file and so the
01b6260
 pdf file cannot be updated.  (Remedy: configure \fIlatexmk\fR use gsview
01b6260
 instead.) 
01b6260
-.SH THANKS TO
01b6260
+.SH "THANKS TO"
01b6260
 David Coppit (username david at node coppit.org) made many useful
01b6260
 suggestions that contributed to version 3. (Please note that the
01b6260
-e-mail addresses are not written in their standard form to avoid being
01b6260
+e\-mail addresses are not written in their standard form to avoid being
01b6260
 harvested by worms and viruses.)
01b6260
-.SH AUTHOR
01b6260
+.SH "AUTHOR"
01b6260
 Current version, with substantial modifications, enhancements and bug
01b6260
 fixes by John Collins (username collins at node phys.psu.edu).
01b6260
 (Version 3.08g).
01b6260
 
01b6260
 It can be obtained from CTAN:
01b6260
-<http://www.tug.org/tex-archive/support/latexmk/>, and from the
01b6260
+<http://www.tug.org/tex\-archive/support/latexmk/>, and from the
01b6260
 author's website <http://www.phys.psu.edu/~collins/software/latexmk/>.
01b6260
-.br
01b6260
+.br 
01b6260
 Modifications and enhancements by Evan McLean (Version 2.0)
01b6260
-.br
01b6260
+.br 
01b6260
 Original script called "go" by David J. Musliner (RCS Version 3.2)
01b6260
diff -dur latexmk-3.08n.ORIG/latexmk.pl latexmk-3.08n/latexmk.pl
01b6260
--- latexmk-3.08n.ORIG/latexmk.pl	2007-02-27 11:55:42.000000000 -0700
01b6260
+++ latexmk-3.08n/latexmk.pl	2007-02-27 11:57:13.000000000 -0700
01b6260
@@ -804,10 +804,8 @@
01b6260
     ## /usr/local/share, depending on the local conventions.
01b6260
     ## /usr/local/lib/latexmk/LatexMk is put in the list for
01b6260
     ## compatibility with older versions of latexmk.
01b6260
-    @rc_system_files = 
01b6260
-     ( '/opt/local/share/latexmk/LatexMk', 
01b6260
-       '/usr/local/share/latexmk/LatexMk',
01b6260
-       '/usr/local/lib/latexmk/LatexMk' );
01b6260
+    ## Fedora Core change: only look in /etc
01b6260
+    @rc_system_files = ( '/etc/latexmk.conf' );
01b6260
 
01b6260
     $search_path_separator = ':';  # Separator of elements in search_path
01b6260