cpdf-source/cpdftype.ml

16 lines
213 B
OCaml
Raw Normal View History

2021-11-16 02:42:17 +01:00
(* cpdftype.ml *)
type box =
Text of string
| Glue of float
| Newline
| Font of string
| BoldOn
| BoldOff
| ItalicOn
| ItalicOff
type t = box list
let typeset papersize boxes =
[Pdfpage.blankpage papersize]