diff options
Diffstat (limited to 'src/latexgen.h')
-rw-r--r-- | src/latexgen.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/latexgen.h b/src/latexgen.h index 2f4313f..e96acb8 100644 --- a/src/latexgen.h +++ b/src/latexgen.h @@ -122,6 +122,8 @@ class LatexGenerator : public OutputGenerator void endPreFragment() { t << "\\end{alltt}\\normalsize " << endl; insidePre=FALSE; } + void startVerbatimFragment() { t << endl << endl << "\\footnotesize\\begin{verbatim}"; } + void endVerbatimFragment() { t << "\\end{verbatim}\\normalsize " << endl; } void writeLineNumber(const char *,const char *,const char *,int l) { t << l << " "; } void startCodeLine() { col=0; } void endCodeLine() { codify("\n"); } |