#pdf #latex #template

tex_tmpl_rs

将LaTeX & Handlebars模板渲染为PDF

4个版本

0.2.1 2024年8月9日
0.1.2 2023年1月7日
0.1.1 2021年12月8日
0.1.0 2021年12月8日

模板引擎中排名第196

Download history 101/week @ 2024-08-05

每月下载量101

MIT许可证MIT

7KB
122

tex_tmpl_rs

一个小型包装库,用于使用Tectonic将LaTeX / Handlebars模板渲染为PDF文档。

示例

\documentclass{article}
\begin{document}
    Hello, {{foo}}!
\end{document}
let mut data = HashMap::new();
data.insert("foo", "boo");

let t = TemplateRecipe {
    template: &tex_path,
    output: &pdf_path,
    data: &data,
    helpers: None,
};

let _ = render_pdf(&t);

依赖项

~36–72MB
~1M SLoC