- Removed the weird pre/postamble stuff that Sjouke asked for.

- Introduced an 'attacktemplate' file.
This commit is contained in:
ccremers
2004-04-23 13:23:33 +00:00
parent 8fda9c6d2b
commit 4cefc16543
3 changed files with 25 additions and 12 deletions

View File

@@ -43,8 +43,6 @@ latexInit (const System sys, int argc, char **argv)
{
int i;
printf ("\\documentclass{article}\n");
printf ("\\usepackage{msc}\n");
printf ("%%\n");
printf ("%% LaTeX output generated by %s\n", progname);
printf ("%% Input:\n");
@@ -56,20 +54,15 @@ latexInit (const System sys, int argc, char **argv)
printf ("\n");
printf ("%%\n");
printf ("\\begin{document}\n\n");
/* comment macro (used for debugging) */
printf ("\\newcommand{\\comment}[1]{}\n");
/* preamble */
printf ("\\input{preamble}\n");
}
void
latexDone (const System sys)
{
printf ("\\input{postamble}\n");
printf ("\n\\end{document}\n\n");
/* closing of the document */
}
void