<?xml version="1.0" encoding="ISO-8859-1"?><!-- THIS XSL-STYLESHEET WAS WRITTEN BY ERIK THAU-KNUDSEN, 2009IT TRANSFORMS ENDNOTE XML TO A BIBLIOGRAPHIC STYLE (with certain alterations) USED BY SCANDO-SLAVICA, A SCANDINAVIAN ANNUAL SCHOLAR PUBLICATION IN SLAVISTICSTHE SCANDO-SLAVICA STYLE, FOR ITS PART, IS AN ADAPTATION OF THE MIT STYLE.Erik Thau-Knudsen, 2009.www.thau-knudsen.dkPLEASE KEEP THE ABOVE TEXT IF YOU COPY THIS FILE ONTO YOUR OWN SITE --><!-- DWXMLSource="../../dokumenter/forskning/bibliografier/lingvistisk_bibliotek.xml" --><!DOCTYPE xsl:stylesheet  [	<!ENTITY nbsp   "&#160;">	<!ENTITY copy   "&#169;">	<!ENTITY reg    "&#174;">	<!ENTITY trade  "&#8482;">	<!ENTITY mdash  "&#8212;">	<!ENTITY ldquo  "&#8220;">	<!ENTITY rdquo  "&#8221;"> 	<!ENTITY pound  "&#163;">	<!ENTITY yen    "&#165;">	<!ENTITY euro   "&#8364;">    <!ENTITY aelig  "&#xE6;">    <!ENTITY oslash "&#xF8;">    <!ENTITY aring  "&#xE5;">]><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:output method="html" encoding="iso-8859-1"/><xsl:template match="/"><!-- PUT THE BELOW CSS STYLESHEET RULES INTO YOUR HTML DOCUMENT. KEEPING THEM HERE IS CONSIDERED BAD CODING, ALBEIT IT DOES THE JOB, NEVERTHELESS. --><style type="text/css">.en_author {font-weight: 600;}.en_year {	padding-left: 0.5em;}.en_pub-location {padding-left: 0.5em;}.en_publisher {padding-left: 0.5em;}</style>        <ol>        <xsl:apply-templates select="xml/records/record">        <!--  -->        </xsl:apply-templates>        </ol><!--         <p><strong>Anvendt bibliografisk stil</strong>: Scando-Slavica</p> --></xsl:template><xsl:template match="record"><li><span class="en_author"><xsl:for-each select="contributors/authors/author"><!-- Generates comma-separated list.Inspired from http://msdn.microsoft.com/en-us/library/ms912463.aspx -->   <xsl:value-of select="."/> <xsl:if test="position()!=last()">, </xsl:if>      </xsl:for-each> </span><span class="en_year"><xsl:value-of select="dates/year" /></span>, <cite><xsl:value-of select="titles/title" /></cite> <xsl:if test="string-length(titles/secondary-title) > 0">, in <xsl:if test="string-length(contributors/secondary-authors) > 0"><xsl:for-each select="contributors/secondary-authors/author"><!-- Generates comma-separated list.Inspired from http://msdn.microsoft.com/en-us/library/ms912463.aspx -->   <xsl:value-of select="."/><xsl:if test="position()!=last()">, </xsl:if></xsl:for-each> </xsl:if>: <cite><xsl:value-of select="titles/secondary-title"/></cite></xsl:if>.&nbsp;<xsl:if test="string-length(pub-location) > 0"> <span class="en_pub-location"><xsl:value-of select="pub-location" /></span></xsl:if><span class="en_publisher"><xsl:if test="string-length(publisher) &gt; 0">&nbsp;(<xsl:value-of select="publisher/style" />)</xsl:if></span><xsl:if test="pages &gt; 0">, <xsl:value-of select="pages" /> s</xsl:if>.</li></xsl:template><xsl:template match="style"><!-- MAKES SURE THAT UNNECESSARY FONT DESIGNATIONS ARE LEFT OUT --><xsl:if test="@font != 'Topaz FEF'"><xsl:if test="@font != 'Lucida Grande'"><xsl:if test="@font !='default'">font-family: <xsl:value-of select="@font" />;</xsl:if></xsl:if></xsl:if></xsl:template><!-- <xsl:template match="contributors"><xsl:apply-templates select="authors" /></xsl:template><xsl:template match="authors"><xsl:value-of select="author"/><xsl:if test="position()!=last()">, </xsl:if></xsl:template>--></xsl:stylesheet>
