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>
|
2020-03-08 02:21:55 +03:00
|
|
|
|
|
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-08 02:21:55 +03:00
|
|
|
|
|
2020-03-09 14:01:56 +03:00
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2020-03-08 02:21:55 +03:00
|
|
|
|
|
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. *)
|
2020-03-08 02:21:55 +03:00
|
|
|
|
|
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. *)
|
2020-03-08 02:21:55 +03:00
|
|
|
|
|
2021-01-21 23:33:04 +03:00
|
|
|
|
open Utils
|
2021-05-26 22:39:40 +03:00
|
|
|
|
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 *)
|
2021-12-31 22:17:55 +03:00
|
|
|
|
let pre_latexify (s : string) : string =
|
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
|
2021-12-31 22:17:55 +03:00
|
|
|
|
[
|
|
|
|
|
("\\$", "\\$");
|
|
|
|
|
("%", "\\%");
|
|
|
|
|
("\\_", "\\_");
|
|
|
|
|
("\\#", "\\#");
|
|
|
|
|
("1er", "1\\textsuperscript{er}");
|
|
|
|
|
("\\^", "\\textasciicircum");
|
|
|
|
|
]
|
|
|
|
|
|> List.fold_left substitute s
|
2020-03-08 02:21:55 +03:00
|
|
|
|
|
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) =
|
2020-10-04 02:25:37 +03:00
|
|
|
|
Format.fprintf fmt
|
2021-12-31 22:17:55 +03:00
|
|
|
|
"\\documentclass[%s, 11pt, a4paper]{article}\n\n\
|
2020-04-17 13:29:30 +03:00
|
|
|
|
\\usepackage[T1]{fontenc}\n\
|
|
|
|
|
\\usepackage[utf8]{inputenc}\n\
|
2021-05-11 21:24:34 +03:00
|
|
|
|
\\usepackage{amssymb}\n\
|
2021-12-31 22:17:55 +03:00
|
|
|
|
\\usepackage{babel}\n\
|
2020-04-17 13:29:30 +03:00
|
|
|
|
\\usepackage{lmodern}\n\
|
|
|
|
|
\\usepackage{minted}\n\
|
2020-05-15 16:28:38 +03:00
|
|
|
|
\\usepackage{newunicodechar}\n\
|
2020-04-17 13:29:30 +03:00
|
|
|
|
\\usepackage{textcomp}\n\
|
|
|
|
|
\\usepackage[hidelinks]{hyperref}\n\
|
|
|
|
|
\\usepackage[dvipsnames]{xcolor}\n\
|
2022-04-29 21:18:01 +03:00
|
|
|
|
\\usepackage[left=2cm,right=2cm,top=3cm,bottom=3cm,headheight=2cm]{geometry}\n\
|
2020-04-17 13:29:30 +03:00
|
|
|
|
\\usepackage[many]{tcolorbox}\n\n\
|
2022-04-29 13:55:09 +03:00
|
|
|
|
\\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\
|
2022-04-29 11:25:46 +03:00
|
|
|
|
\\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\
|
2022-04-29 11:50:15 +03:00
|
|
|
|
\\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\
|
2022-04-29 11:25:46 +03:00
|
|
|
|
\\makeatletter\n\
|
|
|
|
|
\\def\\toclevel@subsubsubsection{4}\n\
|
2022-04-29 11:50:15 +03:00
|
|
|
|
\\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\
|
2022-04-29 13:55:09 +03:00
|
|
|
|
\\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\
|
2022-04-29 11:25:46 +03:00
|
|
|
|
\\makeatother\n\
|
2022-04-28 14:32:35 +03:00
|
|
|
|
\\setcounter{secnumdepth}{0}\n\
|
2022-04-29 11:50:15 +03:00
|
|
|
|
\\setcounter{tocdepth}{9}\n\
|
2020-05-15 16:28:38 +03:00
|
|
|
|
\\newunicodechar{÷}{$\\div$}\n\
|
|
|
|
|
\\newunicodechar{×}{$\\times$}\n\
|
|
|
|
|
\\newunicodechar{≤}{$\\leqslant$}\n\
|
|
|
|
|
\\newunicodechar{≥}{$\\geqslant$}\n\
|
|
|
|
|
\\newunicodechar{→}{$\\rightarrow$}\n\
|
|
|
|
|
\\newunicodechar{≠}{$\\neq$}\n\n\
|
2021-03-10 17:58:01 +03:00
|
|
|
|
\\newcommand*\\FancyVerbStartString{```catala}\n\
|
|
|
|
|
\\newcommand*\\FancyVerbStopString{```}\n\n\
|
2020-04-17 13:29:30 +03:00
|
|
|
|
\\fvset{\n\
|
|
|
|
|
numbers=left,\n\
|
2020-04-19 20:04:11 +03:00
|
|
|
|
frame=lines,\n\
|
2020-04-19 20:56:27 +03:00
|
|
|
|
framesep=3mm,\n\
|
2020-04-19 20:04:11 +03:00
|
|
|
|
rulecolor=\\color{gray!70},\n\
|
2020-04-17 13:29:30 +03:00
|
|
|
|
firstnumber=last,\n\
|
|
|
|
|
codes={\\catcode`\\$=3\\catcode`\\^=7}\n\
|
|
|
|
|
}\n\n\
|
|
|
|
|
\\title{\n\
|
2020-04-19 20:56:27 +03:00
|
|
|
|
%s\n\
|
2020-04-17 13:29:30 +03:00
|
|
|
|
}\n\
|
|
|
|
|
\\author{\n\
|
2020-04-19 20:56:27 +03:00
|
|
|
|
%s Catala version %s\n\
|
2020-04-17 13:29:30 +03:00
|
|
|
|
}\n\
|
|
|
|
|
\\begin{document}\n\
|
|
|
|
|
\\maketitle\n\n\
|
2020-04-19 20:56:27 +03:00
|
|
|
|
%s : \n\
|
2020-04-17 13:29:30 +03:00
|
|
|
|
\\begin{itemize}%s\\end{itemize}\n\n\
|
2022-04-29 13:55:09 +03:00
|
|
|
|
\\clearpage\n\
|
2022-04-28 14:32:35 +03:00
|
|
|
|
\\tableofcontents\n\n\
|
2022-04-29 13:55:09 +03:00
|
|
|
|
\\[\\star\\star\\star\\]\n\
|
|
|
|
|
\\clearpage"
|
2021-05-26 22:18:18 +03:00
|
|
|
|
(match language with Fr -> "french" | En -> "english" | Pl -> "polish")
|
2022-03-09 12:43:17 +03:00
|
|
|
|
(literal_title language)
|
|
|
|
|
(literal_generated_by language)
|
|
|
|
|
Utils.Cli.version
|
2021-05-26 22:39:40 +03:00
|
|
|
|
(literal_source_files language)
|
2020-04-17 13:29:30 +03:00
|
|
|
|
(String.concat ","
|
2020-04-17 16:28:34 +03:00
|
|
|
|
(List.map
|
|
|
|
|
(fun filename ->
|
|
|
|
|
let mtime = (Unix.stat filename).Unix.st_mtime in
|
|
|
|
|
let ltime = Unix.localtime mtime in
|
|
|
|
|
let ftime =
|
2022-03-09 12:43:17 +03:00
|
|
|
|
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
|
2020-04-17 16:28:34 +03:00
|
|
|
|
in
|
2020-04-19 20:56:27 +03:00
|
|
|
|
Printf.sprintf "\\item\\texttt{%s}, %s %s"
|
2020-04-19 19:39:16 +03:00
|
|
|
|
(pre_latexify (Filename.basename filename))
|
2021-05-26 22:39:40 +03:00
|
|
|
|
(literal_last_modification language)
|
2020-04-19 19:39:16 +03:00
|
|
|
|
ftime)
|
2020-10-04 02:25:37 +03:00
|
|
|
|
source_files));
|
|
|
|
|
wrapped fmt;
|
|
|
|
|
Format.fprintf fmt "\n\n\\end{document}"
|
2020-04-17 13:29:30 +03:00
|
|
|
|
|
2020-12-14 20:09:38 +03:00
|
|
|
|
(** {1 Weaving} *)
|
|
|
|
|
|
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 =
|
2020-10-04 02:25:37 +03:00
|
|
|
|
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"
|
2022-04-29 11:50:15 +03:00
|
|
|
|
| 4 -> "subsubsubsubsection"
|
|
|
|
|
| 5 -> "subsubsubsubsubsection"
|
|
|
|
|
| 6 -> "subsubsubsubsubsubsection"
|
|
|
|
|
| 7 -> "paragraph"
|
2021-05-15 02:16:08 +03:00
|
|
|
|
| _ -> "subparagraph")
|
|
|
|
|
(pre_latexify (Pos.unmark heading.law_heading_name));
|
2020-10-04 02:25:37 +03:00
|
|
|
|
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
|
2020-12-11 23:17:01 +03:00
|
|
|
|
| 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
|
2020-12-11 23:17:01 +03:00
|
|
|
|
Format.fprintf fmt
|
2022-03-09 12:43:17 +03:00
|
|
|
|
"\\begin{center}\\textit{Annexe incluse, retranscrite page \
|
|
|
|
|
\\pageref{%s}}\\end{center} \
|
2020-12-11 23:17:01 +03:00
|
|
|
|
\\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 _) -> ()
|
2022-01-19 16:43:42 +03:00
|
|
|
|
| A.LawText t -> Format.fprintf fmt "%s" (pre_latexify t)
|
2021-05-15 02:16:08 +03:00
|
|
|
|
| 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\
|
2021-05-15 02:16:08 +03:00
|
|
|
|
\\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)
|
2021-05-15 02:16:08 +03:00
|
|
|
|
| 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
|
2020-10-04 02:25:37 +03:00
|
|
|
|
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}[numbersep=9mm, firstnumber=%d, \
|
|
|
|
|
label={\\hspace*{\\fill}\\texttt{%s}}]{%s}\n\
|
2021-11-26 20:07:14 +03:00
|
|
|
|
```catala\n\
|
|
|
|
|
%s```\n\
|
2020-04-26 21:48:51 +03:00
|
|
|
|
\\end{minted}\n\
|
2020-04-10 13:02:05 +03:00
|
|
|
|
\\end{tcolorbox}"
|
2020-05-17 19:51:00 +03:00
|
|
|
|
metadata_title metadata_title
|
2020-12-17 22:09:33 +03:00
|
|
|
|
(Pos.get_start_line (Pos.get_position c) - 1)
|
2020-04-20 10:02:08 +03:00
|
|
|
|
(pre_latexify (Filename.basename (Pos.get_file (Pos.get_position c))))
|
2022-03-09 12:43:17 +03:00
|
|
|
|
(get_language_extension language)
|
|
|
|
|
(Pos.unmark c)
|
2020-03-08 02:21:55 +03:00
|
|
|
|
|
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 =
|
2020-10-04 02:25:37 +03:00
|
|
|
|
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
|