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