Struct tectonic_engine_bibtex::BibtexEngine[][src]

pub struct BibtexEngine { /* fields omitted */ }
Expand description

A struct for invoking the BibTeX engine.

This struct has a fairly straightforward “builder” interface: you create it, apply any settings that you wish, and eventually run the process() method.

Due to constraints of the gnarly C/C++ code underlying the engine implementation, only one engine may run at once in one process. The engine execution framework uses a global mutex to ensure that this is the case. This restriction applies not only to the BibtexEngine type but to all Tectonic engines. I.e., you can’t run this engine and the XeTeX engine at the same time.

Implementations

Set the BibTeX min_crossrefs parameter.

The default value is 2.

This needs verifying, but I believe that this setting affects how many times an item needs to be referenced in directly-referenced BibTeX entries before it gets its own standalone entry.

Run BibTeX.

The launcher parameter gives overarching environmental context in which the engine will be run.

The aux parameter gives the name of the “aux” file, created by the TeX engine, that BibTeX will process.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.