package forester

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

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.