//! Macros used for tex templating.
/// Box and type erase a number of tex elements.
#[macro_export]macro_rules!elems{($($elem:expr),*)=>{{letmut collected =Vec::new();$(
collected.push($crate::tpl::IntoTexElement::into_tex_element($elem));)*
collected
}};}