2004-04-23 11:58:43 +01:00
|
|
|
/*
|
|
|
|
* LaTeX output component header
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LATEX
|
|
|
|
#define LATEX
|
|
|
|
|
2004-07-24 16:08:35 +01:00
|
|
|
#include "system.h"
|
2004-04-23 11:58:43 +01:00
|
|
|
|
2004-08-09 11:05:58 +01:00
|
|
|
void latexInit (const System sys, int argc, char **argv);
|
|
|
|
void latexDone (const System sys);
|
|
|
|
void latexTimers (const System sys);
|
|
|
|
void latexMSCStart ();
|
|
|
|
void latexMSCEnd ();
|
|
|
|
void latexLearnComment (const System sys, Termlist tl);
|
|
|
|
void latexTracePrint (const System sys);
|
|
|
|
void attackDisplayLatex (const System sys);
|
2004-05-19 09:39:39 +01:00
|
|
|
void latexTermPrint (Term term, Termlist hl);
|
|
|
|
void latexTermTuplePrint (Term term, Termlist hl);
|
2004-04-23 11:58:43 +01:00
|
|
|
|
|
|
|
#endif
|