Skip to content

Commit

Permalink
fix for #712
Browse files Browse the repository at this point in the history
  • Loading branch information
HelenaSabel committed Nov 26, 2024
1 parent 740fb04 commit 9ff7e07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion html/html_core.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ of this software, even if advised of the possibility of such damage.
tei:*[1]/tei:author/tei:forename
,tei:*[1]/tei:editor/tei:forename
,'')[1]))"/>
<xsl:sort select="tei:monogr/tei:imprint/tei:date"/>
<xsl:sort select="head(tei:monogr/tei:imprint/tei:date)"/>
<li>
<xsl:call-template name="makeAnchor"/>
<xsl:apply-templates select="."/>
Expand Down
2 changes: 1 addition & 1 deletion latex/latex_core.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ of this software, even if advised of the possibility of such damage.
| tei:*/tei:editor//tei:surname
| tei:*/tei:editor/tei:name
| tei:*/tei:title)[1])"/>
<xsl:sort select="tei:monogr/tei:imprint/tei:date"/>
<xsl:sort select="head(tei:monogr/tei:imprint/tei:date)"/>
<xsl:text>&#10;\bibitem[</xsl:text>
<xsl:apply-templates select="." mode="xref"/>
<xsl:text>]{</xsl:text>
Expand Down

0 comments on commit 9ff7e07

Please sign in to comment.