1 2 3 4 5 6 7 8 9
//! Non-mathematical support code: formatting, parse errors, LaTeX rendering, //! data-directory resolution, logging and a thread-safe counter. pub mod format; pub mod parse_err; pub mod sync; pub mod data_dir; pub mod log; pub mod tex;