diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2009-08-14 14:49:07 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2009-08-14 14:49:07 (GMT) |
commit | 8c6ca30831818a77a6947baad63ab99cb8cd8c31 (patch) | |
tree | fed426d0d7216311cbd009a1fcd2786176478b5e /src/latexgen.h | |
parent | 142b4807d2ae7479691bd0800d28364b9857b82f (diff) | |
download | Doxygen-8c6ca30831818a77a6947baad63ab99cb8cd8c31.zip Doxygen-8c6ca30831818a77a6947baad63ab99cb8cd8c31.tar.gz Doxygen-8c6ca30831818a77a6947baad63ab99cb8cd8c31.tar.bz2 |
Release-1.5.9-20090814
Diffstat (limited to 'src/latexgen.h')
-rw-r--r-- | src/latexgen.h | 12 |
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(); |