summaryrefslogtreecommitdiffstats
path: root/src/latexgen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/latexgen.h')
-rw-r--r--src/latexgen.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/latexgen.h b/src/latexgen.h
index f2cc193..1fe92dd 100644
--- a/src/latexgen.h
+++ b/src/latexgen.h
@@ -198,10 +198,15 @@ class LatexGenerator : public OutputGenerator
void endContents() {}
void writeNonBreakableSpace(int);
- void startDescTable()
- { t << "\\begin{description}" << endl; }
+ void startDescTable(const char *title)
+ { startSimpleSect(EnumValues,0,0,title);
+ startDescForItem();
+ t << "\\begin{description}" << endl; }
void endDescTable()
- { t << "\\end{description}" << endl; }
+ { t << "\\end{description}" << endl;
+ endDescForItem();
+ endSimpleSect();
+ }
void startDescTableTitle()
{ t << "\\item[{\\em " << endl; }
void endDescTableTitle()