From 962d5d2f822f1eb7dee1a49ac264dd9dbf3bfbd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Wo=C5=BAniak?= Date: Tue, 11 May 2021 20:24:34 +0200 Subject: [PATCH] compilation fixes --- src/catala/literate/latex.ml | 2 +- .../pl/pygments/catala_pl_lexer.egg-info/entry_points.txt | 2 +- syntax_highlighting/pl/pygments/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/catala/literate/latex.ml b/src/catala/literate/latex.ml index 8ea0dc58..94cb324b 100644 --- a/src/catala/literate/latex.ml +++ b/src/catala/literate/latex.ml @@ -43,10 +43,10 @@ let wrap_latex (source_files : string list) (language : C.backend_lang) (fmt : F "\\documentclass[11pt, a4paper]{article}\n\n\ \\usepackage[T1]{fontenc}\n\ \\usepackage[utf8]{inputenc}\n\ + \\usepackage{amssymb}\n\ \\usepackage[%s]{babel}\n\ \\usepackage{lmodern}\n\ \\usepackage{minted}\n\ - \\usepackage{amssymb}\n\ \\usepackage{newunicodechar}\n\ \\usepackage{textcomp}\n\ \\usepackage[hidelinks]{hyperref}\n\ diff --git a/syntax_highlighting/pl/pygments/catala_pl_lexer.egg-info/entry_points.txt b/syntax_highlighting/pl/pygments/catala_pl_lexer.egg-info/entry_points.txt index c376dc19..fc2e4082 100644 --- a/syntax_highlighting/pl/pygments/catala_pl_lexer.egg-info/entry_points.txt +++ b/syntax_highlighting/pl/pygments/catala_pl_lexer.egg-info/entry_points.txt @@ -1,4 +1,4 @@ [pygments.lexers] - catala_pl_lexer = catala_pl_lexer.lexer:CatalaNvLexer + catala_pl_lexer = catala_pl_lexer.lexer:CatalaPlLexer \ No newline at end of file diff --git a/syntax_highlighting/pl/pygments/setup.py b/syntax_highlighting/pl/pygments/setup.py index 1cf8752e..c596b013 100644 --- a/syntax_highlighting/pl/pygments/setup.py +++ b/syntax_highlighting/pl/pygments/setup.py @@ -5,6 +5,6 @@ setup( packages=find_packages(), entry_points=""" [pygments.lexers] - catala_pl_lexer = catala_pl_lexer.lexer:CatalaNvLexer + catala_pl_lexer = catala_pl_lexer.lexer:CatalaPlLexer """, )