DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Post-processing LaTeX

The slot afterBuildLaTeX may be used to post-process the generated LaTeX file when rendering your documentation as PDF using LaTeX.

Slot: afterBuildLaTeX

This slot is used to post-process the generated LaTeX file.

Your slot should implement a method of the form:

public function postprocess($texFileName, /* additional parameters */) {
    // Custom code
}

Parameter $texFileName contains the name of the generated .tex file that you may post-process by directly accessing and rewriting it as you want.

Note

This slot is being used by this extension to fix the curly single quote in source code and use a straight one instead.