summaryrefslogtreecommitdiffstats
path: root/src/latexgen.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-08-14 14:49:07 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-08-14 14:49:07 (GMT)
commit9e6be9a8ae24b788cf2463a703bda48cbd77c773 (patch)
treefed426d0d7216311cbd009a1fcd2786176478b5e /src/latexgen.h
parent6e28050ef5483e624122b0bacb998c40664f78ee (diff)
downloadDoxygen-9e6be9a8ae24b788cf2463a703bda48cbd77c773.zip
Doxygen-9e6be9a8ae24b788cf2463a703bda48cbd77c773.tar.gz
Doxygen-9e6be9a8ae24b788cf2463a703bda48cbd77c773.tar.bz2
Release-1.5.9-20090814
Diffstat (limited to 'src/latexgen.h')
-rw-r--r--src/latexgen.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/latexgen.h b/src/latexgen.h
index 2967c74..9b7bf74 100644
--- a/src/latexgen.h
+++ b/src/latexgen.h
@@ -67,14 +67,14 @@ class LatexGenerator : public OutputGenerator
void writeString(const char *text);
void startIndexListItem() {}
void endIndexListItem() {}
- void startIndexList() { t << "\\begin{CompactList}" << endl; }
- void endIndexList() { t << "\\end{CompactList}" << endl; }
+ void startIndexList() { t << "\\begin{DoxyCompactList}" << endl; }
+ void endIndexList() { t << "\\end{DoxyCompactList}" << endl; }
void startIndexKey();
void endIndexKey();
void startIndexValue(bool);
void endIndexValue(const char *,bool);
- void startItemList() { t << "\\begin{CompactItemize}" << endl; }
- void endItemList() { t << "\\end{CompactItemize}" << endl; }
+ void startItemList() { t << "\\begin{DoxyCompactItemize}" << endl; }
+ void endItemList() { t << "\\end{DoxyCompactItemize}" << endl; }
void startIndexItem(const char *ref,const char *file);
void endIndexItem(const char *ref,const char *file);
void docify(const char *text);
@@ -88,7 +88,7 @@ class LatexGenerator : public OutputGenerator
void endTextLink();
void startHtmlLink(const char *url);
void endHtmlLink();
- void startTypewriter() { t << "{\\tt "; }
+ void startTypewriter() { t << "{\\ttfamily "; }
void endTypewriter() { t << "}"; }
void startGroupHeader();
void endGroupHeader();
@@ -130,7 +130,7 @@ class LatexGenerator : public OutputGenerator
void endCodeLine();
void startEmphasis() { t << "{\\em "; }
void endEmphasis() { t << "}"; }
- void startBold() { t << "\\textbf{"; }
+ void startBold() { t << "{\\bfseries "; }
void endBold() { t << "}"; }
void startDescription();
void endDescription();