-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix for 90505 * xsl for 90755 to apply to all versions
- Loading branch information
1 parent
80ae78b
commit dc73c1b
Showing
5 changed files
with
1,037 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
xmlns:xlink="http://www.w3.org/1999/xlink" | ||
exclude-result-prefixes="xs" | ||
version="3.0"> | ||
|
||
<xsl:output method="xml" encoding="UTF-8"/> | ||
|
||
<xsl:template match="*|@*|text()"> | ||
<xsl:copy> | ||
<xsl:apply-templates select="*|@*|text()"/> | ||
</xsl:copy> | ||
</xsl:template> | ||
|
||
<xsl:template match="article[//article-meta/article-version='1.1']//ref[@id='c41']"> | ||
<ref id="c41"><mixed-citation publication-type="journal"><string-name><surname>Mielke</surname> <given-names>A.</given-names></string-name> <article-title>On Saint-Venant’s problem for an elastic strip</article-title>. <source>Proceedings of the Royal Society of Edinburgh Section A: Mathematics</source>. <year>1988</year>; <volume>110</volume>():<fpage>161</fpage>–<lpage>181</lpage>.</mixed-citation></ref> | ||
</xsl:template> | ||
|
||
<xsl:template match="article[//article-meta/article-version='1.1']//ref[@id='c33']"> | ||
<ref id="c33"><mixed-citation publication-type="book"><string-name><surname>Landau</surname> <given-names>L</given-names></string-name>, <string-name><surname>Lifshitz</surname> <given-names>E.</given-names></string-name> <source>Mécanique des fluides, editions Mir</source>, vol. <volume>6</volume>; <year>1971</year>.</mixed-citation></ref> | ||
</xsl:template> | ||
|
||
</xsl:stylesheet> |
Oops, something went wrong.