Skip to content

Instantly share code, notes, and snippets.

@raffazizzi
Created June 29, 2020 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raffazizzi/60ee78be03e613657834966b5d1c7013 to your computer and use it in GitHub Desktop.
Save raffazizzi/60ee78be03e613657834966b5d1c7013 to your computer and use it in GitHub Desktop.
Interdependent MEI files, one for the mass and one for each movement without duplication of data
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://music-encoding.org/schema/4.0.1/mei-CMN.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-model href="https://music-encoding.org/schema/4.0.1/mei-CMN.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<mei xmlns="http://www.music-encoding.org/ns/mei" xmlns:xi="http://www.w3.org/2001/XInclude"
xml:id="CRIM_MASS-0001">
<meiHead xmlns="http://www.music-encoding.org/ns/mei" xml:id="CRIM_MASS-0001">
<altId>CRIM_MASS-0001</altId>
<fileDesc>
<titleStmt>
<title>Missa Confitemini</title>
<respStmt>
<persName role="composer" auth="VIAF" auth.uri="https://viaf.org/viaf/195668/"
>Pierre Coline</persName>
<persName role="editor">Vincent Besson</persName>
<persName role="editor">Marco Gurrieri</persName>
<persName role="editor">Richard Freedman</persName>
</respStmt>
</titleStmt>
<pubStmt>
<publisher> Citations: The Renaissance Imitation Mass Project </publisher>
<distributor> Centre d'Études Supérieures de la Renaissance </distributor>
<distributor>Haverford College</distributor>
<!-- I would skip the revisionDesc and just have the latest publication date here. -->
<date isodate="2015-06-02"/>
<availability> This work is licensed under a Creative Commons
Attribution-NonCommercial 4.0 International License </availability>
</pubStmt>
</fileDesc>
<encodingDesc>
<!-- We could keep information about the SibMEI export process -->
<appInfo>
<application xml:id="sibelius" isodate="2017-7-11T12:15:09Z" version="8410">
<name type="operating-system">Mac OS X Mountain Lion</name>
</application>
<application xml:id="sibmei" type="plugin" version="2.1.0">
<name>Sibelius to MEI Exporter (2.1.0)</name>
</application>
</appInfo>
</encodingDesc>
<workList xml:id="workList">
<work>
<title>Missa Confitemini</title>
<composer>
<persName role="composer" auth="VIAF" auth.uri="https://viaf.org/viaf/195668/"
>Pierre Coline</persName>
</composer>
<contents>
<contentItem>Kyrie</contentItem>
<contentItem>Gloria</contentItem>
<contentItem>Credo</contentItem>
<contentItem>Sanctus</contentItem>
<contentItem>Agnus Dei</contentItem>
</contents>
</work>
</workList>
<manifestationList xml:id="manifestationList">
<manifestation>
<identifier type="RISM"> RISM A I, C 3312 </identifier>
<titleStmt>
<title>Missa Confitemini</title>
</titleStmt>
<pubStmt>
<publisher>
<persName auth="VIAF" auth.uri="http://viaf.org/viaf/9901501"> Nicolas Du
Chemin </persName>
</publisher>
<date isodate="1556"/>
</pubStmt>
<physLoc>
<repository>
<corpName>Bibliothèque nationale</corpName>
<settlement>Paris</settlement>
</repository>
<identifier type="shelfmark"> RESVM1-10 </identifier>
</physLoc>
</manifestation>
</manifestationList>
</meiHead>
<music>
<body>
<!-- KYRIE -->
<!-- add a "movement" xml:id to the mdiv element -->
<xi:include href="CRIM_Mass_0001.mei" xpointer="movement" />
<!-- GLORIA -->
<!-- etc -->
</body>
</music>
</mei>
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://music-encoding.org/schema/4.0.1/mei-CMN.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-model href="https://music-encoding.org/schema/4.0.1/mei-CMN.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<mei xmlns="http://www.music-encoding.org/ns/mei" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="CRIM_MASS-0001_1">
<meiHead>
<altId>CRIM_MASS-0001_1</altId>
<fileDesc>
<titleStmt>
<title>Missa Confitemini: Kyrie</title>
<respStmt>
<persName role="composer" auth="VIAF" auth.uri="https://viaf.org/viaf/195668/"
>Pierre Coline</persName>
<persName role="editor">Vincent Besson</persName>
<persName role="editor">Marco Gurrieri</persName>
<persName role="editor">Richard Freedman</persName>
</respStmt>
</titleStmt>
<pubStmt>
<publisher>
Citations: The Renaissance Imitation Mass Project
</publisher>
<distributor>
Centre d'Études Supérieures de la Renaissance
</distributor>
<distributor>Haverford College</distributor>
<!-- I would skip the revisionDesc and just have the latest publication date here. -->
<date isodate="2015-06-02"/>
<availability>
This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License
</availability>
</pubStmt>
</fileDesc>
<encodingDesc>
<!-- We could keep information about the SibMEI export process -->
<appInfo>
<application xml:id="sibelius" isodate="2017-7-11T12:15:09Z" version="8410">
<name type="operating-system">Mac OS X Mountain Lion</name>
</application>
<application xml:id="sibmei" type="plugin" version="2.1.0">
<name>Sibelius to MEI Exporter (2.1.0)</name>
</application>
</appInfo>
</encodingDesc>
<xi:include href="CRIM_Mass_0001.mei" xpointer="workList" />
<xi:include href="CRIM_Mass_0001.mei" xpointer="manifestationList" />
</meiHead>
<music>
<body>
</body>
</music>
</mei>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment