summaryrefslogtreecommitdiffstats
path: root/src/latexgen.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2006-02-04 15:33:47 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2006-02-04 15:33:47 (GMT)
commit8b0ae7ca77a14eef79e972d6061a9470de9ae458 (patch)
tree2d45018d20008480ccea03a78fa6fc37908676d9 /src/latexgen.h
parente6060ed25b457ae558711d1341bf1c96b093ee99 (diff)
downloadDoxygen-8b0ae7ca77a14eef79e972d6061a9470de9ae458.zip
Doxygen-8b0ae7ca77a14eef79e972d6061a9470de9ae458.tar.gz
Doxygen-8b0ae7ca77a14eef79e972d6061a9470de9ae458.tar.bz2
Release-1.4.6-20060202
Diffstat (limited to 'src/latexgen.h')
-rw-r--r--src/latexgen.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/latexgen.h b/src/latexgen.h
index 6a7a484..bfca4ed 100644
--- a/src/latexgen.h
+++ b/src/latexgen.h
@@ -115,14 +115,14 @@ class LatexGenerator : public OutputGenerator
void writeRuler() { t << endl << endl; /*t << "\\vspace{0.4cm}\\hrule\\vspace{0.2cm}" << endl; */ }
void writeAnchor(const char *fileName,const char *name);
- void startCodeFragment() { t << endl << endl << "\\footnotesize\\begin{verbatim}"; }
- void endCodeFragment() { t << "\\end{verbatim}\\normalsize " << endl; }
+ void startCodeFragment() { t << endl << endl << "\\begin{Code}\\begin{verbatim}"; }
+ void endCodeFragment() { t << "\\end{verbatim}\\end{Code}" << endl; }
void writeLineNumber(const char *,const char *,const char *,int l) { t << l << " "; }
void startCodeLine() { col=0; }
void endCodeLine() { codify("\n"); }
void startEmphasis() { t << "{\\em "; }
void endEmphasis() { t << "}"; }
- void startBold() { t << "{\\bf "; }
+ void startBold() { t << "\\textbf{"; }
void endBold() { t << "}"; }
void startDescription();
void endDescription();