tex-rs 0.2.1

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;
}