1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
# 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.
[text]
# runtime configuration of the text module
#
# 'fontmaps' is a string, namely a whitespace separated list of 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'.
fontmaps = psfonts.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
|