2c22c62
# This is the system-wide configuration file for latexmk version 3.20.
01b6260
# See the latexmk(1) man page for more information.
01b6260
#
01b6260
# The following options are given their default values.
01b6260
# Uncomment them and change the values if the defaults do not suit your needs.
01b6260
01b6260
# If nonzero, DVI-to-postscript conversion adds a banner message on each page
01b6260
# $banner = 0;
01b6260
01b6260
# The darkness of the banner, a number between 0 (black) and 1 (white)
01b6260
# $banner_intensity = 0.95;
01b6260
01b6260
# The banner message to print across each page if $banner is nonzero
01b6260
# $banner_message = 'DRAFT';
01b6260
01b6260
# The size of the banner message (about 1100 divided by the message length)
01b6260
# $banner_scale = 220.0;
01b6260
01b6260
# An array of directory names where BibTeX should look for .bib files.
01b6260
# @BIBINPUTS = $ENV('BIBINPUTS') converted to an array of strings
01b6260
01b6260
# The name of the BibTeX executable
01b6260
# $bibtex = 'bibtex';
01b6260
01b6260
# The switch that puts BibTeX in silent mode
01b6260
# $bibtex_silent_switch = '-terse';
01b6260
01b6260
# How much cleaning to do: 0 specifies normal operation (no cleaning),
01b6260
# 1 specifies a full cleanup, 2 specifies a cleanup that leaves DVI,
01b6260
# PostScript, and PDF files, and 3 specifies a cleanup that also leaves dep
01b6260
# and aux files.  You probably should not set this option.
01b6260
# $cleanup_mode = 0;
01b6260
01b6260
# Extra file extensions to remove when cleaning
01b6260
# $clean_ext = "";
01b6260
01b6260
# Extra file extensions to remove when doing a full clean
01b6260
# $clean_full_ext = "";
01b6260
01b6260
# A custom dependency list; see the man page for details
01b6260
# @cus_dep_list = ();
01b6260
01b6260
# The default list of files to be processed; see the man page for details
01b6260
# @default_files = ('*.tex');
01b6260
01b6260
# The DVI file filter to be run on newly produced DVI files
01b6260
# $dvi_filter = '';
01b6260
01b6260
# The command to start a DVI previewer
01b6260
# $dvi_previewer = 'start xdvi';
01b6260
$dvi_previewer = 'xdg-open';
01b6260
01b6260
# The command to start a DVI previewer in landscape mode
01b6260
# $dvi_previewer_landscape = 'start xdvi -paper usr';
01b6260
$dvi_previewer_landscape = 'xdg-open';
01b6260
01b6260
# The command to convert a DVI file into a PDF file.
01b6260
# See the warnings on the man page
01b6260
# $dvipdf = 'dvipdf';
01b6260
01b6260
# The command to convert a DVI file into a PostScript file
01b6260
# $dvips = 'dvips';
01b6260
01b6260
# The command to convert a DVI file into a PostScript file in landscape mode
2c22c62
# $dvips_landscape = 'dvips -tlandscape';
01b6260
01b6260
# Command line switch for dvips when a PDF file is to be generated
01b6260
# $dvips_pdf_switch = '-P pdf';
01b6260
01b6260
# Command line switch for dvips to make it run in silent mode
01b6260
# $dvips_silent_switch = '-q';
01b6260
2c22c62
# The command to run when the DVI viewer is set to be updated by a command
2c22c62
# $dvi_update_command = '';
2c22c62
01b6260
# How to make the DVI viewer update its display when the DVI file changes.
01b6260
# See the man page for a description of each method.
01b6260
# $dvi_update_method = 2;
01b6260
$dvi_update_method = 1;
01b6260
01b6260
# When DVI update method 2 is used, the number of the Unix signal to send
2c22c62
# $dvi_update_signal = SIGUSR1
01b6260
2c22c62
# The extension of the file which latexmk generates to contain a database
2c22c62
# of information on source files.
2c22c62
# $fdb_ext = 'fdb_latex';
01b6260
01b6260
# If nonzero, continue processing past minor LaTeX errors
01b6260
# This option is made nonzero if the -pvs command line option is used.
01b6260
# $force_mode = 0;
01b6260
01b6260
# If nonzero, force latexmk to include files that don't exist when generating
01b6260
# dependency files.
01b6260
# $force_include_mode = 0;
01b6260
01b6260
# The list of extensions for files that are generated in one run and consumed
01b6260
# by later runs of one of the LaTeX tools.  The 'aux' and 'bbl' extensions are
01b6260
# treated specially, and hence are not in this list.
2c22c62
# @generated_exts = ( 'ind', 'lof', 'lot', 'out', 'toc', $fdb_ext );
01b6260
01b6260
# If nonzero, process files regardless of timestamps
01b6260
# $go_mode = 0;
01b6260
01b6260
# If nonzero, run makeindex to produce a document index.  Normally, latexmk
01b6260
# should be able to figure out when this is necessary.
01b6260
# $index_mode = 0;
01b6260
01b6260
# If nonzero, run in landscape mode
01b6260
# $landscape_mode = 0;
01b6260
01b6260
# The name of the LaTeX program
01b6260
# $latex = 'latex';
01b6260
01b6260
# The command line switch to make LaTeX run in silent mode
01b6260
# $latex_silent_switch = '-interaction=batchmode';
01b6260
01b6260
# The program that prints PostScript files
01b6260
# $lpr = 'lpr';
01b6260
01b6260
# The program that prints DVI files
01b6260
# $lpr_dvi = 'NONE $lpr_dvi variable is not configured to allow printing of dvi files';
01b6260
01b6260
# The program that prints PDF files
01b6260
# $lpr_pdf = 'NONE $lpr_pdf variable is not configured to allow printing of pdf files';
01b6260
01b6260
# The name of the makeindex program
01b6260
# $makeindex = 'makeindex';
01b6260
01b6260
# The command line switch to make makeindex run in silent mode
01b6260
# $makeindex_silent_switch = '-q';
01b6260
01b6260
# This variable is used only when running in continuous-preview mode.  If zero,
01b6260
# check for a previously running previewer on the same file and update it.  If
01b6260
# nonzero, always start a new previewer.
01b6260
# $new_viewer_always = 0;
01b6260
01b6260
# If zero, generate a DVI file.  If 1, generate a PDF file using pdflatex.
01b6260
# If 2, generate a PostScript file, then convert it using ps2pdf.
01b6260
# If 3, generate a DVI file, then convert it using dvipdf.
01b6260
# $pdf_mode = 0;
01b6260
01b6260
# The name of the LaTeX program that produces PDF files by default
01b6260
# $pdflatex = 'pdflatex';
01b6260
01b6260
# The command line switch to make pdflatex run in silent mode
01b6260
# $pdflatex_silent_switch = '-interaction=batchmode';
01b6260
01b6260
# The command to invoke a PDF previewer
01b6260
# $pdf_previewer = 'start acroread';
01b6260
$pdf_previewer = 'xdg-open';
01b6260
2c22c62
# The command to run when the PDF viewer is set to be updated by a command
2c22c62
# $pdf_update_command = '';
2c22c62
01b6260
# How to make the PDF viewer update its display when the PDF file changes.
01b6260
# See the man page for a description of each method.
01b6260
# $pdf_update_method = 1;
01b6260
01b6260
# When PDF update method 2 is used, the number of the Unix signal to send
2c22c62
# $pdf_update_signal = SIGHUP
01b6260
01b6260
# Where the pid is in the output of $pscmd; see the man page
01b6260
# $pid_position = 1;
01b6260
01b6260
# If zero, generate a DVI file.  If nonzero, generate a PostScript file
01b6260
# $postscript_mode = 0;
01b6260
01b6260
# If nonzero, run a previewer to view the document and keep the DVI file up
01b6260
# to date
01b6260
# $preview_continuous_mode = 0;
01b6260
01b6260
# If nonzero, run a previewer to preview the document
01b6260
# $preview_mode = 0;
01b6260
01b6260
# If nonzero, print the document using lpr each time it is created
01b6260
# $printout_mode = 0;
01b6260
01b6260
# The type of file to printout: 'dvi', 'none', 'pdf', or 'ps'
01b6260
# $print_type = 'ps';
01b6260
01b6260
# Command used to list all the processes currently run by the user
2c22c62
# $pscmd = "ps -f -u $ENV{USER}";
01b6260
01b6260
# Command to convert a PostScript file to a PDF file
01b6260
# $ps2pdf = 'ps2pdf';
01b6260
01b6260
# Filter to run on newly created PostScript files
01b6260
# $ps_filter = '';
01b6260
01b6260
# The command to invoke a PostScript previewer
01b6260
# $ps_previewer = 'start gv -watch';
01b6260
$ps_previewer = 'xdg-open';
01b6260
01b6260
# The command to invoke a PostScript previewer in landscape mode
01b6260
# $ps_previewer_landscape = 'start gv -swap -watch';
2c22c62
$ps_previewer_landscape = 'xdg-open';
2c22c62
2c22c62
# The command to run when the PostScript viewer is set to be updated by a
2c22c62
# command
2c22c62
# $ps_update_command = '';
01b6260
01b6260
# How to make the PostScript viewer update its display when the PostScript
01b6260
# file changes.  See the man page for a description of each method.
01b6260
# $ps_update_method = 0;
01b6260
$ps_update_method = 1;
01b6260
01b6260
# When PostScript update method 2 is used, the number of the Unix signal to
01b6260
# send
2c22c62
# $ps_update_signal = SIGHUP
01b6260
01b6260
# The time to sleep in seconds between checking for source file changes when
01b6260
# running in continuous update mode
01b6260
# $sleep_time = 2;
01b6260
01b6260
# The directory to store temporary files; omit the trailing '/'
01b6260
# $tmpdir = '/tmp';
2c22c62
2c22c62
# Which kind of file is to be previewed if a previewer is used.  The possible
2c22c62
# values are 'default', 'dvi', 'ps', and 'pdf'.  The value of 'default' means
2c22c62
# that the PDF is viewed if it is generated, else PostScript is viewed if it is
2c22c62
# generated, else DVI is viewed.
2c22c62
# $view = 'default';