<xsl:param name="page.margin.outer">0.55in</xsl:param>
<xsl:param name="page.margin.top">0.55in</xsl:param>
<xsl:param name="page.margin.bottom">0.55in</xsl:param>
- <xsl:param name="latex.class.options">a4paper,openright,twoside</xsl:param>
+ <xsl:param name="latex.class.options">a4paper,openright,twoside,twocolumn</xsl:param>
<!-- No use showing table of content, it is empty -->
<xsl:param name="doc.toc.show">0</xsl:param>
+ <!-- no need for a separate author list -->
+ <xsl:param name="doc.collab.show">0</xsl:param>
+
+ <!-- disable revision history until there is a history to display -->
+ <xsl:param name="latex.output.revhistory">0</xsl:param>
+
+ <!-- insert a few latex tricks at the top of the .tex document -->
+ <xsl:param name="latex.begindocument">
+ <xsl:text>
+% Trick to wrap glossary term
+\setlist[description]{style=unboxed}
+
+% Trick to avoid many words sticking out of the right margin of the text.
+\sloppy
+
+\begin{document}
+ </xsl:text>
+ </xsl:param>
+
</xsl:stylesheet>