mapm/
lib.rs

1//! # mapm
2//!
3//! `mapm` is a library that allows problem yaml files to be collated into a contest file and compiled with a user-defined template.
4//!
5//! There is a command-line utility as well as a graphical utility for mapm.
6//!
7//! ## Requirements
8//!
9//! A working version of `latexmk`, as well as a properly configured `~/.latexmkrc` file, are required.
10
11pub mod contest;
12pub mod problem;
13pub mod result;
14pub mod sty;
15pub mod template;
16mod utils;