TeXJob constructor

init

Creates a TeX job for running the engine in production mode to typeset a TeX document. The engine will prompt the file name as soon as it starts. Thus this run is supposed to be interactive.

def __init__(self, device, options):
    ...
ParameterTypeDescription
deviceaspose.tex.presentation.DeviceThe device defining output representation.
optionsTeXOptionsTeX engine run options.

init

Creates a TeX job for running the engine in production mode to typeset a TeX file.

def __init__(self, stream, device, options):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe stream containing the TeX file.
deviceaspose.tex.presentation.DeviceThe device defining output representation.
optionsTeXOptionsTeX engine run options.

init

Creates a TeX job for running the engine in production mode to typeset a TeX file.

def __init__(self, path, device, options):
    ...
ParameterTypeDescription
pathstrThe path to the TeX file.
deviceaspose.tex.presentation.DeviceThe device defining output representation.
optionsTeXOptionsTeX engine run options.

See Also