Trait boxworks::tex::TexEngine

source ·
pub trait TexEngine {
    // Required method
    fn run_and_return_stdout(&self, tex_source_code: &str) -> String;
}
Expand description

Implementations of this trait can run TeX source code and return stdout.

Required Methods§

source

fn run_and_return_stdout(&self, tex_source_code: &str) -> String

Run the provided TeX source code and return stdout.

Implementors§