2004-04-23 11:58:43 +01:00
|
|
|
/*
|
|
|
|
* LaTeX output component header
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LATEX
|
|
|
|
#define LATEX
|
|
|
|
|
|
|
|
#include "runs.h"
|
|
|
|
|
|
|
|
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);
|
2004-07-20 13:41:56 +01:00
|
|
|
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
|