mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-18 15:33:09 +00:00

to do that conversion, and the resulting html and pdf documents. All of the work is done in subdirectories. This is for review, comment, and adjustment. Still to be done: - Integrate the docbook to html and pdf into the Maven build. - Merge changes from the Foundation version of docs into HTML. - Remove the legacy HTML source. - Remove the generated html and pdf once the build does it. - Various small formatting cleanups. git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3042 9c30dcfa-912a-0410-8fc2-9e0234be79fd
21 lines
627 B
XML
21 lines
627 B
XML
<?xml version='1.0'?>
|
|
<xsl:stylesheet
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
|
version="1.0">
|
|
|
|
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/>
|
|
|
|
<xsl:template match="lineannotation">
|
|
<fo:inline font-style="italic">
|
|
<xsl:call-template name="inline.charseq"/>
|
|
</fo:inline>
|
|
</xsl:template>
|
|
|
|
<xsl:attribute-set name="monospace.verbatim.properties">
|
|
<xsl:attribute name="wrap-option">wrap</xsl:attribute>
|
|
<xsl:attribute name="hyphenation-character">\</xsl:attribute>
|
|
</xsl:attribute-set>
|
|
|
|
</xsl:stylesheet>
|