]> pere.pagekite.me Git - text-free-culture-lessig.git/blobdiff - data/dblatex-endnotes.xsl
Drop dblatex-endnotes.xsl and move relevant settings into pdf.xsl.
[text-free-culture-lessig.git] / data / dblatex-endnotes.xsl
diff --git a/data/dblatex-endnotes.xsl b/data/dblatex-endnotes.xsl
deleted file mode 100644 (file)
index 5e5731c..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version='1.0'?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
-
-<!--
-Trick to get endnote support.  Should have a way to insert LaTeX code
-outside xetex font values.  As it is missing, reuse the
-latex.begindocument value (aka \begin{document} to get a code fragment
-in front of it.
--->
-  <xsl:param name="footnote.as.endnote" select="1"/>
-
-  <xsl:attribute-set name="endnotes.properties"
-                     use-attribute-sets="endnotes.properties.default">
-<!--
-Increase footnote/endnote size to be more than 6 pts, to avoid
-complaint from Lulu about the font being too small to be printed
-clearly.  Needed at least for pocket size books.  Probably wise to use
-the same size as the colophon page (see myclass.cls)
-
-for \fontsize{x}{y}, use y=1.2*x, x >= 6
--->
-
-    <!--xsl:attribute name="font-size">\fontsize{10}{12}</xsl:attribute-->
-    <xsl:attribute name="font-size">\footnotesize</xsl:attribute>
-    <!--xsl:attribute name="font-size">\normalsize</xsl:attribute-->
-  </xsl:attribute-set>
-
-  <xsl:param name="latex.begindocument">
-    <xsl:text>
-% Trick to avoid many words sticking out of the right margin of the text.
-% Need to add it here with the end notes, as only one
-% latex.begindocument can be active.
-\sloppy
-
-\begin{document}
-    </xsl:text>
-  </xsl:param>
-
-</xsl:stylesheet>