tex-rs 0.2.7

Library to create latex documents in Rust
Documentation
1
2
3
4
5
6
/// Convert trait for turning element into string
pub trait Convert {
    /// Takes reference of the element and uses it's &self.0 for the string
    fn to_latex_string(&self) -> String;
    //fn to_matex_string(&self) -> String;
}