update upload data
[PyX.git] / pyx / data / pyxrc
blob8183a21ef2ec183abd1ff8a570adb70163c8ebcd
1 # This file is an example containing the runtime configuration options
2 # of PyX and its default values. You may adapt this file and copy it
3 # to /etc/pyxrc for systemwide configuration overwriting the PyX
4 # defaults. Alternatively you may copy it to ~/.pyxrc for personal
5 # configuration overwritting both, the PyX defaults and the systemwide
6 # configuration.
8 [general]
9 # general options
11 # warnings are issued using pythons warning module. You can influence
12 # the output by the following option, using the values "default" (for
13 # the python default), "short" (for a single line format), and
14 # "shortest" for printing the warning message itself only.
15 warnings = shortest
17 [text]
18 # runtime configuration of the text module
20 # 'psfontmaps' is a whitespace separated list of options listing font
21 # mapping files. Those files contain information about the available
22 # type1 fonts. Depending on your TeX-installation you may need to add
23 # further font mapping files like psfonts.cmz (if your TeX installation
24 # is not configured to use type1 fonts by default). For further
25 # information browse the FAQ for the term 'font mapping file'.
26 psfontmaps = psfonts.map
28 # 'pdffontmaps' is similar to psfontmaps, but it used when pdf output
29 # is generated. (Note that pdf has a different set of builtin fonts.)
30 pdffontmaps = pdftex.map
32 # 'waitfortex' is an positive integer, namely the number of seconds
33 # to be waited for an appropriate response from TeX/LaTeX.
34 waitfortex = 60
36 # 'showwaitfortex' is an non-negative integer, namely the number of
37 # seconds to be waited until (and between) emitting messages
38 # indicating the waiting for an appropriate response from TeX/LaTeX.
39 # This feature can be turned off by setting showwaitfortex to 0.
40 showwaitfortex = 5
42 # 'texipc' is a boolean controlling the usage of the --ipc option of
43 # TeX/LaTeX. You should turn on this option when the ipc-extension is
44 # available in your TeX installation (check the output of tex --help).
45 # You will gain immediate access to the dvi-output of TeX by that,
46 # which will substantially improve the performance of certain
47 # operations (e.g. the usage of PyX markers).
48 texipc = 0
50 [filelocator]
51 # runtime configuration of file search mechanism
53 # 'methods' defines a list of methods to be tried one after each other
54 # to find files like, e.g., fonts and corresponding metrics information.
56 # Available methods are:
57 # - 'local': locates files in the current directory.
58 # - 'internal': locates files within the PyX data tree (also inside
59 #               of zipped Python eggs for Python 2.6 and above).
60 # - 'recursivedir': locates files by searching recursively in a
61 #                   space-separated list of directories, which can
62 #                   be specified by the option 'recursivedir'.
63 # - 'ls-R': locates files by searching a list of ls-R files,
64 #           which can be specified by the option 'ls-R'.
65 # - 'pykpathsea': locate files using the pykpathsea extension if available.
66 #                 Building of this module can be enabled in the setup.cfg
67 #                 file distributed with PyX.
68 # - 'kpsewhich': locate files using the kpsewhich executable if available.
69 # - 'locate': locate files using a locate executable if available.
70 methods = local internal pykpathsea kpsewhich