<?xml version="1.0" encoding="ISO-8859-1"?><!-- THIS XSL-STYLESHEET WAS WRITTEN BY ERIK THAU-KNUDSEN, 2010IT TRANSFORMS ENDNOTE XML TO A BIBLIOGRAPHIC STYLE (with certain alterations) USED BY VIA UNIVERSITY COLLEGE, A COOPERATION OF JUTISH HIGH SCHOOLSTHE LANGUAGE APPLIED IN THIS XSL STYLESHEET IS DANISH.MORE INFO ABOUT THE STYLE ON http://www.studweb.dk/om_studiet/litteraturlister/udskrift.aspErik Thau-Knudsen, 2010.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: 100;}.en_year {	padding: 0em;}.en_title, .en_secondary-title {font-style: normal;}.en_pub-location {padding-left: 0.0em;}.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>: CVUalpha standard for litteraturfortegnelse og litteraturhenvisninger</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 class="en_title"><xsl:value-of select="titles/title" />.</cite> <xsl:if test="string-length(titles/secondary-title) > 0"> I: <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> (red.): <cite class="en_secondary-title"><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>
