1 2 3 4 5 6 7 | <p>When in the Course of human events, it becomes necessary for one people to dissolve the political bonds which have connected them with another, and to assume among the powers of the earth, the separate and equal station to which the Laws of Nature and of Nature's God entitle them, a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation.</p> |
1 2 3 4 5 | <fo:block font-size="12pt" line-height="15pt space-after="12pt">When in the Course of human events, it becomes necessary for one people to dissolve the political bonds which ... </fo:block> |
1 2 3 4 5 6 | <xsl:template match="p"> <fo:block font-size="12pt" line-height="15pt" space-after="12pt"> <xsl:apply-templates select="*|text()"/> </fo:block> </xsl:template> |
1 2 3 4 5 6 | <pre> public static void main(String args[]) { System.out.println("Hello, world!"); } </pre> |
1 2 3 4 5 6 7 8 | <fo:block font-family="monospace" white-space-collapse="false" wrap-option="no-wrap"> public static void main(String args[]) { System.out.println("Hello, world!"); } </fo:block> |
1 2 3 4 5 6 7 8 9 | <xsl:template match="pre"> <fo:block font-family="monospace" white-space-collapse="false" wrap-option="no-wrap"> <xsl:apply-templates select="*|text()"/> </fo:block> </xsl:template> |
1 2 | <p>The <samp>DOCTYPE</samp> keyword lets you refer to a DTD from your XML source document.</p> |
1 2 3 4 5 6 7 8 | <xsl:template match="samp"> <fo:inline font-family="monospace" font-size="110%"> <xsl:apply-templates select="*|text()"/> </fo:inline> </xsl:template> |
1 2 3 4 5 6 7 | <xsl:template match="small"> <fo:inline font-size="80%"> <xsl:apply-templates select="*|text()"/> </fo:inline> </xsl:template> |
1 2 3 4 | <fo:block font-size="12pt" line-height="15pt" space-after="12pt"> The Lakers' chances for a fourth straight title are <fo:inline font-size="80%">slim</fo:inline>. </fo:block> |
1 2 3 | <p>The underline property <strike>is not currently supported by FOP.</strike> is now supported by FOP.</p> |
1 2 3 4 5 6 7 | <xsl:template match="strike"> <fo:inline text-decoration="line-through"> <xsl:apply-templates select="*|text()"/> </fo:inline> </xsl:template> |
1 2 3 4 5 6 7 | <xsl:template match="strong"> <fo:inline font-weight="bold"> <xsl:apply-templates select="*|text()"/> </fo:inline> </xsl:template> |
1 2 | <p>When I'm thirsty, nothing beats a cold glass of H<sub>2</sub>O.</p> |
1 2 3 4 5 6 7 8 | <xsl:template match="sub"> <fo:inline vertical-align="sub" font-size="75%"> <xsl:apply-templates select="*|text()"/> </fo:inline> </xsl:template> |
欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) | Powered by Discuz! 7.0.0 |