Skip to content
Snippets Groups Projects
Commit 09ece7a0 authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Update on latex generator

parent cc2f9c74
No related branches found
No related tags found
No related merge requests found
......@@ -382,7 +382,7 @@ public class DocumentationGenerator implements SteppedAlgorithm, StoppableGUIEle
tmpdoc += " generation date: " + formattedDate;
tmpdoc += "----\n";
tmpdoc += "\\documentclass[11pt,a4paper]{article}\n\n\\usepackage{graphicx}\n\n\\begin{document}\n";
tmpdoc += "\\title{" + projectName + "}\n";
tmpdoc += "\\title{" + Conversion.replaceAllString(projectName, "_", "\\_") + "}\n";
tmpdoc += "\\date{\\today}\n";
tmpdoc += "\\maketitle\n\n";
tmpdoc += "\\input{"+texIncludeFileName+"}\n";
......@@ -417,7 +417,7 @@ public class DocumentationGenerator implements SteppedAlgorithm, StoppableGUIEle
tmpdoc += "----\n";
tmpdoc += "% To be compiled as follows: make all. Relies on https://github.com/pacalet/mli.git\n";
tmpdoc += "\\documentclass[11pt,a4paper]{article}\n\n\\usepackage{graphicx}\n\n\\begin{document}\n";
tmpdoc += "\\title{" + projectName + "}\n";
tmpdoc += "\\title{" + Conversion.replaceAllString(projectName, "_", "\\_") + "}\n";
tmpdoc += "\\date{\\today}\n";
tmpdoc += "\\maketitle\n\n";
tmpdoc += "\\input{"+texIncludeFileNameSvg+"}\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment