summaryrefslogtreecommitdiffstats
path: root/src/latexgen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/latexgen.h')
-rw-r--r--src/latexgen.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/latexgen.h b/src/latexgen.h
index 7e8a174..b102f76 100644
--- a/src/latexgen.h
+++ b/src/latexgen.h
@@ -110,6 +110,8 @@ class LatexGenerator : public OutputGenerator
void writeAnchor(const char *fileName,const char *name);
void startCodeFragment() { t << "\\small\\begin{verbatim}"; }
void endCodeFragment() { t << "\\end{verbatim}\\normalsize " << endl; }
+ void startPreFragment() { t << "\\small\\begin{alltt}"; }
+ void endPreFragment() { t << "\\end{alltt}\\normalsize " << endl; }
void startCodeLine() { col=0; }
void endCodeLine() { t << endl; }
void writeBoldString(const char *text)