Advertisement
Pooky

Custom Stylesheet

Jan 13th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.33 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3.                 xmlns:d="http://docbook.org/ns/docbook"
  4.                 xmlns:fo="http://www.w3.org/1999/XSL/Format"
  5.                 version="1.0">
  6. <!--
  7. <xsl:template name="book.titlepage.recto">
  8.  <xsl:apply-templates mode="book.titlepage.recto.auto.mode"  select="title"/>
  9. </xsl:template> -->
  10. <xsl:template match="d:bold">
  11.     <xsl:text> ..... </xsl:text>
  12.     <!-- <xsl:apply-templates select="/d:book/d:info/d:title"/> -->
  13.     <xsl:text> .... </xsl:text>
  14. </xsl:template>
  15.  <!--
  16. <xsl:template match="title" mode="book.titlepage.recto.auto.mode">
  17.  
  18.     <fo:block
  19.          xsl:use-attribute-sets="book.titlepage.recto.style"
  20.          font-size="24pt"
  21.          space-before="18pt"
  22.          font-weight="bold">
  23.         Jihočeská univerzita v Českých Budějovicích
  24.         <fo:block />
  25.         Přírodovědecká fakulta
  26.  
  27.     </fo:block>
  28.  
  29.     <fo:block space-before="4cm" space-after="5mm" text-align="center">
  30.         <fo:external-graphic src="PrF.png" content-width="4cm" content-height="4cm" scaling="uniform" />
  31.     </fo:block>
  32.  
  33.     <fo:block
  34.          xsl:use-attribute-sets="book.titlepage.recto.style"
  35.          font-size="24pt"
  36.          space-before="18pt"
  37.          font-weight="bold">
  38.  
  39.     <xsl:apply-templates />
  40.  
  41.     </fo:block>
  42. </xsl:template>
  43. -->
  44. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement