<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns="http://www.w3.org/TR/xhtml1/strict"
  version="1.0"> 

<!-- $Id: custom.xsl,v 1.1.1.1 2003/03/01 08:05:31 ss Exp $ -->
<!-- This file is for customization and is to be included
  in common.xsl - driver stylesheet -->

<xsl:param name="callout.graphics" select="'0'"/>
<xsl:param name="html.stylesheet.type">text/css</xsl:param>
<xsl:param name="html.stylesheet" select="'base.css'"/>
<xsl:param name="html.cleanup" select="1"/>
<xsl:param name="make.valid.html" select="1"/>
<xsl:param name="chunker.output.omit-xml-declaration" select="'no'"/>
<xsl:param name="generate.toc" select="1"/>
<xsl:param name="graphicsize.extension" select="1"/>
<xsl:param name="generate.id.attributes" select="1"/>

<!-- *** Overrides *** -->
<xsl:template name="person.name.family-given">
  <xsl:param name="node" select="."/>
  <xsl:apply-templates select="$node//surname[1]"/>
  <xsl:if test="$node//surname and $node//firstname">
    <xsl:text> </xsl:text>
  </xsl:if>
  <xsl:apply-templates select="$node//firstname[1]"/>
  <!-- <xsl:text> [FAMILY Given]</xsl:text> -->
</xsl:template>
<xsl:template match="editor[position()=1]" mode="titlepage.mode">
  <h3 xmlns="http://www.w3.org/1999/xhtml" class="{name(.)}">(訳者: <xsl:call-template name="person.name"/>)</h3>
</xsl:template>
<xsl:template match="author[position()=1]" mode="titlepage.mode">
  <!-- <h4 xmlns="http://www.w3.org/1999/xhtml" class="editedby"><xsl:call-template name="gentext.edited.by"/></h4><h3 -->
  <h3 xmlns="http://www.w3.org/1999/xhtml" class="{name(.)}"><xsl:call-template name="person.name"/></h3>
</xsl:template>


</xsl:stylesheet>

<!-- vim: ts=8 sw=2 sts=2 ai si:
-->

