1<xsl:stylesheet version="1.0" 2 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 4 5 6 7<xsl:template match="/"> 8 9<html><body> 10 11<xsl:apply-templates/> 12 13</body></html> 14 15</xsl:template> 16 17 18 19 20 21<xsl:template match="para"> 22 23 <p><xsl:apply-templates/></p> 24 25</xsl:template> 26 27 28 29<xsl:template match="publication"> 30 31 <font face="arial"><xsl:apply-templates/></font> 32 33</xsl:template> 34 35 36 37<xsl:template match="quote"> 38 39 <xsl:text/>"<xsl:apply-templates/>"<xsl:text/> 40 41</xsl:template> 42 43 44 45<xsl:template match="work"> 46 47 <i><xsl:apply-templates/></i> 48 49</xsl:template> 50 51 52 53<xsl:template match="role"> 54 55 <u><xsl:apply-templates/></u> 56 57</xsl:template> 58 59 <!-- 60 * Licensed to the Apache Software Foundation (ASF) under one 61 * or more contributor license agreements. See the NOTICE file 62 * distributed with this work for additional information 63 * regarding copyright ownership. The ASF licenses this file 64 * to you under the Apache License, Version 2.0 (the "License"); 65 * you may not use this file except in compliance with the License. 66 * You may obtain a copy of the License at 67 * 68 * http://www.apache.org/licenses/LICENSE-2.0 69 * 70 * Unless required by applicable law or agreed to in writing, software 71 * distributed under the License is distributed on an "AS IS" BASIS, 72 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 73 * See the License for the specific language governing permissions and 74 * limitations under the License. 75 --> 76 77</xsl:stylesheet> 78