catala/compiler/literate/latex.ml

300 lines
12 KiB
OCaml
Raw Normal View History

2022-03-09 12:43:17 +03:00
(* This file is part of the Catala compiler, a specification language for tax
and social benefits computation rules. Copyright (C) 2020 Inria,
contributors: Denis Merigoux <denis.merigoux@inria.fr>, Emile Rolley
<emile.rolley@tuta.io>
2022-03-09 12:43:17 +03:00
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at
2020-03-09 14:01:56 +03:00
http://www.apache.org/licenses/LICENSE-2.0
2022-03-09 12:43:17 +03:00
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
2020-03-09 14:01:56 +03:00
the License. *)
2022-03-09 12:43:17 +03:00
(** This modules weaves the source code and the legislative text together into a
document that law professionals can understand. *)
2021-01-21 23:33:04 +03:00
open Utils
open Literate_common
2020-11-23 11:22:47 +03:00
module A = Surface.Ast
2020-04-11 19:36:00 +03:00
module R = Re.Pcre
2020-04-20 09:13:57 +03:00
module C = Cli
2020-04-11 19:36:00 +03:00
2020-12-14 20:09:38 +03:00
(** {1 Helpers} *)
(** Espaces various LaTeX-sensitive characters *)
let pre_latexify (s : string) : string =
(* first we substitute the annoying characters *)
2022-03-09 12:43:17 +03:00
let substitute s (old_s, new_s) =
R.substitute ~rex:(R.regexp old_s) ~subst:(fun _ -> new_s) s
in
let s =
[ ("1er", "1\\textsuperscript{er}"); ("\\^", "\\textasciicircum") ]
|> List.fold_left substitute s
in
(* Then we send to pandoc, to ensure the markdown features used in the
original document are correctly printed! *)
run_pandoc s Cli.Latex
2020-12-14 20:09:38 +03:00
(** Usage: [wrap_latex source_files custom_pygments language fmt wrapped]
Prints an LaTeX complete documùent structure around the [wrapped] content. *)
2022-03-09 12:43:17 +03:00
let wrap_latex
(source_files : string list)
(language : C.backend_lang)
(fmt : Format.formatter)
2021-03-02 20:27:39 +03:00
(wrapped : Format.formatter -> unit) =
2022-05-02 17:20:06 +03:00
let git_channel =
Unix.open_process_in
(Format.asprintf "git shortlog -sn -- %s"
(String.concat " " source_files))
in
let authors = ref [] in
try
let authors_rex = Re.Pcre.regexp "^\\s*(\\d+)\\s*(\\w.*)$" in
while true do
let new_author = input_line git_channel in
let groups = Re.Pcre.exec ~rex:authors_rex new_author in
2022-05-04 15:01:14 +03:00
try authors := Re.Pcre.get_substring groups 2 :: !authors
2022-05-02 17:20:06 +03:00
with Not_found -> ()
done
with End_of_file ->
();
Format.fprintf fmt
"\\documentclass[%s, 11pt, a4paper]{article}\n\n\
\\usepackage[T1]{fontenc}\n\
\\usepackage[utf8]{inputenc}\n\
\\usepackage{amssymb}\n\
\\usepackage{babel}\n\
\\usepackage{fontspec}\n\
\\usepackage[hidelinks]{hyperref}\n\
\\setmainfont{Marianne}\n\
\\usepackage{minted}\n\
\\usepackage{longtable}\n\
\\usepackage{booktabs}\n\
\\usepackage{newunicodechar}\n\
\\usepackage{textcomp}\n\
\\usepackage[hidelinks]{hyperref}\n\
\\usepackage[dvipsnames]{xcolor}\n\
\\usepackage[left=2cm,right=2cm,top=3cm,bottom=3cm,headheight=2cm]{geometry}\n\
\\usepackage[many]{tcolorbox}\n\n\
\\usepackage{fancyhdr}\n\
\\pagestyle{fancy}\n\
\\fancyhf{}\n\
\\fancyhead[C]{\\leftmark}\n\
\\fancyfoot[C]{\\thepage}\n\
\\renewcommand{\\headrulewidth}{0.5pt}\n\
\\renewcommand{\\footrulewidth}{0.5pt}\n\
\\usepackage{titlesec}\n\
\\titleclass{\\subsubsubsection}{straight}[\\subsection]\n\
\\newcounter{subsubsubsection}[subsubsection]\n\
\\renewcommand\\thesubsubsubsection{\\thesubsubsection.\\arabic{subsubsubsection}}\n\
\\titleformat{\\subsubsubsection}{\\normalfont\\normalsize\\bfseries}{\\thesubsubsubsection}{1em}{}\n\
\\titlespacing*{\\subsubsubsection}{0pt}{3.25ex plus 1ex minus \
.2ex}{1.5ex plus .2ex}\n\
\\titleclass{\\subsubsubsubsection}{straight}[\\subsubsection]\n\
\\newcounter{subsubsubsubsection}[subsubsubsection]\n\
\\renewcommand\\thesubsubsubsubsection{\\thesubsubsubsection.\\arabic{subsubsubsubsection}}\n\
\\titleformat{\\subsubsubsubsection}{\\normalfont\\normalsize\\bfseries}{\\thesubsubsubsubsection}{0.75em}{}\n\
\\titlespacing*{\\subsubsubsubsection}{0pt}{2.75ex plus 1ex minus \
.2ex}{1.25ex plus .2ex}\n\
\\titleclass{\\subsubsubsubsubsection}{straight}[\\subsubsubsection]\n\
\\newcounter{subsubsubsubsubsection}[subsubsubsubsection]\n\
\\renewcommand\\thesubsubsubsubsubsection{\\thesubsubsubsubsection.\\arabic{subsubsubsubsubsection}}\n\
\\titleformat{\\subsubsubsubsubsection}{\\normalfont\\normalsize\\bfseries}{\\thesubsubsubsubsubsection}{0.7em}{}\n\
\\titlespacing*{\\subsubsubsubsubsection}{0pt}{2.5ex plus 1ex minus \
.2ex}{1.1ex plus .2ex}\n\
\\titleclass{\\subsubsubsubsubsubsection}{straight}[\\subsubsubsubsection]\n\
\\newcounter{subsubsubsubsubsubsection}[subsubsubsubsubsection]\n\
\\renewcommand\\thesubsubsubsubsubsubsection{\\thesubsubsubsubsubsection.\\arabic{subsubsubsubsubsubsection}}\n\
\\titleformat{\\subsubsubsubsubsubsection}{\\normalfont\\normalsize\\bfseries}{\\thesubsubsubsubsubsubsection}{0.6em}{}\n\
\\titlespacing*{\\subsubsubsubsubsubsection}{0pt}{2.25ex plus 1ex minus \
.2ex}{1ex plus .2ex}\n\
\\makeatletter\n\
\\def\\toclevel@subsubsubsection{4}\n\
\\def\\toclevel@subsubsubsubsection{5}\n\
\\def\\toclevel@subsubsubsubsubsection{6}\n\
\\def\\toclevel@subsubsubsubsubsubsection{7}\n\
\\def\\toclevel@paragraph{8}\n\
\\def\\toclevel@subparagraph{9}\n\
\\def\\l@subsection{\\@dottedtocline{1}{1em}{0.5em}}\n\
\\def\\l@subsubsection{\\@dottedtocline{2}{2em}{1em}}\n\
\\def\\l@subsubsubsection{\\@dottedtocline{3}{3em}{1.5em}}\n\
\\def\\l@subsubsubsubsection{\\@dottedtocline{5}{4em}{2em}}\n\
\\def\\l@subsubsubsubsubsection{\\@dottedtocline{6}{5em}{2.5em}}\n\
\\def\\l@subsubsubsubsubsubsection{\\@dottedtocline{7}{6em}{3em}}\n\
\\def\\l@paragraph{\\@dottedtocline{8}{7em}{3.5em}}\n\
\\def\\l@subparagraph{\\@dottedtocline{9}{8em}{4em}}\n\
\\makeatother\n\
\\setcounter{secnumdepth}{0}\n\
\\setcounter{tocdepth}{9}\n\
\\newunicodechar{÷}{$\\div$}\n\
\\newunicodechar{×}{$\\times$}\n\
\\newunicodechar{}{$\\leqslant$}\n\
\\newunicodechar{}{$\\geqslant$}\n\
\\newunicodechar{}{$\\rightarrow$}\n\
\\newunicodechar{}{$\\neq$}\n\n\
\\newcommand*\\FancyVerbStartString{```catala}\n\
\\newcommand*\\FancyVerbStopString{```}\n\n\
\\fvset{\n\
numbers=left,\n\
frame=lines,\n\
framesep=3mm,\n\
rulecolor=\\color{gray!70},\n\
firstnumber=last,\n\
codes={\\catcode`\\$=3\\catcode`\\^=7}\n\
}\n\
\\newcommand{\\tightlist}{\\setlength{\\itemsep}{0pt}\\setlength{\\parskip}{0pt}}\n\n\
\\title{\n\
%s\\\\\n\
%s Catala version %s\n\
}\n\
\\author{\n\
%s}\n\
\\begin{document}\n\
\\maketitle\n\n\
2022-05-04 15:01:14 +03:00
%s\n\n\
2022-05-02 17:20:06 +03:00
%s : \n\
\\begin{itemize}%s\\end{itemize}\n\n\
\\clearpage\n\
\\tableofcontents\n\n\
\\[\\star\\star\\star\\]\n\
\\clearpage"
(match language with Fr -> "french" | En -> "english" | Pl -> "polish")
(literal_title language)
(literal_generated_by language)
Utils.Cli.version
(String.concat " \\and "
(List.map
2022-05-04 15:01:14 +03:00
(fun authors -> Format.asprintf "%s" authors)
2022-05-02 17:20:06 +03:00
(List.rev !authors)))
2022-05-04 15:01:14 +03:00
(literal_disclaimer_and_link language)
2022-05-02 17:20:06 +03:00
(literal_source_files language)
(String.concat
(match language with Fr -> " ;" | En -> ";" | Pl -> ";")
(List.map
(fun filename ->
let mtime = (Unix.stat filename).Unix.st_mtime in
let ltime = Unix.localtime mtime in
let ftime =
Printf.sprintf "%d-%02d-%02d %d:%02d"
(1900 + ltime.Unix.tm_year)
(ltime.Unix.tm_mon + 1) ltime.Unix.tm_mday ltime.Unix.tm_hour
ltime.Unix.tm_min
in
Printf.sprintf "\\item\\texttt{%s}, %s %s"
(pre_latexify (Filename.basename filename))
(literal_last_modification language)
ftime)
source_files)
^ ".");
wrapped fmt;
Format.fprintf fmt "\n\n\\end{document}"
2020-12-14 20:09:38 +03:00
(** {1 Weaving} *)
(** [check_exceeding_lines max_len start_line filename content] prints a warning
message for each lines of [content] exceeding [max_len] characters. *)
let check_exceeding_lines
?(max_len = 80) (start_line : int) (filename : string) (content : string) =
content |> String.split_on_char '\n'
|> List.iteri (fun i s ->
2022-05-02 13:00:46 +03:00
if CamomileLibrary.UTF8.length s > max_len then (
Cli.warning_print "The line %s in %s is exceeding %s characters:"
(Cli.with_style
ANSITerminal.[ Bold; yellow ]
"%d"
(start_line + i + 1))
(Cli.with_style ANSITerminal.[ Bold; magenta ] "%s" filename)
(Cli.with_style ANSITerminal.[ Bold; red ] "%d" max_len);
Cli.warning_print "%s%s" (String.sub s 0 max_len)
(Cli.with_style
ANSITerminal.[ red ]
"%s"
String.(sub s max_len (length s - max_len)))))
2022-03-09 12:43:17 +03:00
let rec law_structure_to_latex
(language : C.backend_lang) (fmt : Format.formatter) (i : A.law_structure) :
unit =
match i with
| A.LawHeading (heading, children) ->
2022-04-28 14:32:35 +03:00
Format.fprintf fmt "\\%s{%s}\n\n"
2021-03-23 12:59:43 +03:00
(match heading.law_heading_precedence with
2021-11-26 20:07:14 +03:00
| 0 -> "section"
| 1 -> "subsection"
| 2 -> "subsubsection"
2022-04-29 11:25:46 +03:00
| 3 -> "subsubsubsection"
| 4 -> "subsubsubsubsection"
| 5 -> "subsubsubsubsubsection"
| 6 -> "subsubsubsubsubsubsection"
| 7 -> "paragraph"
| _ -> "subparagraph")
(pre_latexify (Pos.unmark heading.law_heading_name));
Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "\n\n")
2022-03-09 12:43:17 +03:00
(law_structure_to_latex language)
fmt children
| A.LawInclude (A.PdfFile ((file, _), page)) ->
2022-03-09 12:43:17 +03:00
let label =
file
^ match page with None -> "" | Some p -> Format.sprintf "_page_%d," p
in
Format.fprintf fmt
2022-03-09 12:43:17 +03:00
"\\begin{center}\\textit{Annexe incluse, retranscrite page \
\\pageref{%s}}\\end{center} \
\\begin{figure}[p]\\begin{center}\\includegraphics[%swidth=\\textwidth]{%s}\\label{%s}\\end{center}\\end{figure}"
label
(match page with None -> "" | Some p -> Format.sprintf "page=%d," p)
file label
| A.LawInclude (A.CatalaFile _ | A.LegislativeText _) -> ()
| A.LawText t -> Format.fprintf fmt "%s" (pre_latexify t)
| A.CodeBlock (_, c, false) ->
Format.fprintf fmt
"\\begin{minted}[label={\\hspace*{\\fill}\\texttt{%s}},firstnumber=%d]{%s}\n\
2021-11-26 20:07:14 +03:00
```catala\n\
%s```\n\
\\end{minted}"
(pre_latexify (Filename.basename (Pos.get_file (Pos.get_position c))))
(Pos.get_start_line (Pos.get_position c) - 1)
2022-03-09 12:43:17 +03:00
(get_language_extension language)
(Pos.unmark c)
| A.CodeBlock (_, c, true) ->
2021-05-10 00:06:59 +03:00
let metadata_title =
2022-03-09 12:43:17 +03:00
match language with
| Fr -> "Métadonnées"
| En -> "Metadata"
| Pl -> "Metadane"
2021-05-10 00:06:59 +03:00
in
let start_line = Pos.get_start_line (Pos.get_position c) - 1 in
let filename = Filename.basename (Pos.get_file (Pos.get_position c)) in
let block_content = Pos.unmark c in
check_exceeding_lines start_line filename block_content;
Format.fprintf fmt
2020-04-10 13:02:05 +03:00
"\\begin{tcolorbox}[colframe=OliveGreen, breakable, \
2020-05-17 19:51:00 +03:00
title=\\textcolor{black}{\\texttt{%s}},title after \
2022-03-09 12:43:17 +03:00
break=\\textcolor{black}{\\texttt{%s}},before skip=1em, after \
skip=1em]\n\
\\begin{minted}[breaklines, numbersep=9mm, firstnumber=%d, \
2022-03-09 12:43:17 +03:00
label={\\hspace*{\\fill}\\texttt{%s}}]{%s}\n\
2021-11-26 20:07:14 +03:00
```catala\n\
%s```\n\
\\end{minted}\n\
2020-04-10 13:02:05 +03:00
\\end{tcolorbox}"
metadata_title metadata_title start_line (pre_latexify filename)
2022-03-09 12:43:17 +03:00
(get_language_extension language)
block_content
2020-12-14 20:09:38 +03:00
(** {1 API} *)
2022-03-09 12:43:17 +03:00
let ast_to_latex
(language : C.backend_lang) (fmt : Format.formatter) (program : A.program) :
unit =
Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "\n\n")
2022-03-09 12:43:17 +03:00
(law_structure_to_latex language)
fmt program.program_items