~ubuntu-branches/debian/sid/pyx/sid

« back to all changes in this revision

Viewing changes to pyx/data/pyxrc

  • Committer: Bazaar Package Importer
  • Author(s): Stuart Prescott
  • Date: 2011-05-20 00:13:52 UTC
  • mto: (9.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20110520001352-odcuqpdezuusbbw1
Tags: upstream-0.11.1
ImportĀ upstreamĀ versionĀ 0.11.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.
 
7
 
 
8
[general]
 
9
# general options
 
10
#
 
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
 
16
 
 
17
[text]
 
18
# runtime configuration of the text module
 
19
#
 
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
 
27
 
 
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
 
31
 
 
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
 
35
 
 
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
 
41
 
 
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
 
49
 
 
50
[filelocator]
 
51
# runtime configuration of file search mechanism
 
52
#
 
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.
 
55
#
 
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