texcore 0.7.2

Create LaTeX documents using native Rust types.
Documentation
1
2
3
4
5
6
7
8
/// Provide types to make adding images in a LaTeX document easier with the `graphicx` package.
pub mod graphicx;
/// Provides types to make adding mathematical equations easier with various math related packages.
///
/// All of these symbols are from the following [OverLeaf Guide](https://www.overleaf.com/learn/latex/List_of_Greek_letters_and_math_symbols)
pub mod math;
/// Provides types to make tables easily
pub mod tables;