Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 9b3ef98d82282343cfac7f840aa5ab34 > files > 1

PyX-0.11.1-1.fc15.i686.rpm

# This file is an example containing the runtime configuration options
# of PyX and its default values. You may adapt this file and copy it
# to /etc/pyxrc for systemwide configuration overwriting the PyX
# defaults. Alternatively you may copy it to ~/.pyxrc for personal
# configuration overwritting both, the PyX defaults and the systemwide
# configuration.

[general]
# general options
#
# warnings are issued using pythons warning module. You can influence
# the output by the following option, using the values "default" (for
# the python default), "short" (for a single line format), and
# "shortest" for printing the warning message itself only.
warnings = shortest

[text]
# runtime configuration of the text module
#
# 'psfontmaps' is a whitespace separated list of options listing font
# mapping files. Those files contain information about the available
# type1 fonts. Depending on your TeX-installation you may need to add
# further font mapping files like psfonts.cmz (if your TeX installation
# is not configured to use type1 fonts by default). For further
# information browse the FAQ for the term 'font mapping file'.
psfontmaps = psfonts.map

# 'pdffontmaps' is similar to psfontmaps, but it used when pdf output
# is generated. (Note that pdf has a different set of builtin fonts.)
pdffontmaps = pdftex.map

# 'waitfortex' is an positive integer, namely the number of seconds
# to be waited for an appropriate response from TeX/LaTeX.
waitfortex = 60

# 'showwaitfortex' is an non-negative integer, namely the number of
# seconds to be waited until (and between) emitting messages
# indicating the waiting for an appropriate response from TeX/LaTeX.
# This feature can be turned off by setting showwaitfortex to 0.
showwaitfortex = 5

# 'texipc' is a boolean controlling the usage of the --ipc option of
# TeX/LaTeX. You should turn on this option when the ipc-extension is
# available in your TeX installation (check the output of tex --help).
# You will gain immediate access to the dvi-output of TeX by that,
# which will substantially improve the performance of certain
# operations (e.g. the usage of PyX markers).
texipc = 1

[filelocator]
# runtime configuration of file search mechanism
#
# 'methods' defines a list of methods to be tried one after each other
# to find files like, e.g., fonts and corresponding metrics information.
#
# Available methods are:
# - 'local': locates files in the current directory.
# - 'internal': locates files within the PyX data tree (also inside
#               of zipped Python eggs for Python 2.6 and above).
# - 'recursivedir': locates files by searching recursively in a
#                   space-separated list of directories, which can
#                   be specified by the option 'recursivedir'.
# - 'ls-R': locates files by searching a list of ls-R files,
#           which can be specified by the option 'ls-R'.
# - 'pykpathsea': locate files using the pykpathsea extension if available.
#                 Building of this module can be enabled in the setup.cfg
#                 file distributed with PyX.
# - 'kpsewhich': locate files using the kpsewhich executable if available.
# - 'locate': locate files using a locate executable if available.
methods = local internal pykpathsea kpsewhich