package forester

  1. Overview
  2. Docs
A tool for tending mathematical forests

Install

Dune Dependency

Authors

Maintainers

Sources

4.3.0.tar.gz
md5=4cf7ec6a0a36810572f8b3a2af58631c
sha512=818f859dac00a18807563fd79663ec54232c8df196a8dc2de5e269a1d0c71085b1b490297ea0ecf3ef9cd32e40fb05ad2e10c241b03958c15e25c2942271eede

doc/src/forester.core/LaTeX_template.ml.html

Source file LaTeX_template.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
let pp fmt ~preamble ~body =
  let newline () = Format.fprintf fmt "\n" in
  Format.fprintf fmt {|\documentclass[crop,dvisvgm]{standalone}|};
  newline ();
  Format.fprintf fmt "%s" preamble;
  newline ();
  Format.fprintf fmt {|\begin{document}|};
  newline ();
  Format.fprintf fmt "%s" body;
  newline ();
  Format.fprintf fmt {|\end{document}|}

let to_string ~preamble ~body =
  Format.asprintf "%a" (fun fmt _ -> pp ~preamble ~body fmt) ()
OCaml

Innovation. Community. Security.