rusttex 0.1.2

A Rust library for programmatically generating LaTeX documents
Documentation
1
2
3
4
5
6
7
8
9
#[macro_export]
/// A macro to easily mix Strings and enums as options
macro_rules! options {
    ($($item:expr),*) => {
        vec![
            $(Box::new($item) as Box<dyn ToString>),*
        ]
    };
}