svg2tex-rs 0.1.2

Convert SVG artwork into PDF literal operators or TeX-friendly output for LaTeX workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Command-line entry point for the `svg2tex-rs` binary.

use clap::Parser;

use svg2tex_rs::{run, Args};

fn main() {
    let args = Args::parse();

    if let Err(err) = run(args) {
        eprintln!("{err}");
        std::process::exit(1);
    }
}