forked from mei-friend/mei-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skeleton.mei
35 lines (35 loc) · 1.18 KB
/
skeleton.mei
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?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" meiversion="4.0.1">
<meiHead>
<fileDesc>
<titleStmt>
<title>Tutorial: basic MEI skeleton</title>
</titleStmt>
<pubStmt></pubStmt>
</fileDesc>
</meiHead>
<music>
<body>
<mdiv>
<score>
<scoreDef>
<staffGrp>
<staffDef clef.shape="G" clef.line="2" n="1" lines="5"/> <!-- Play around with line numbers and clef.shape (G, F, C) -->
</staffGrp>
</scoreDef>
<section>
<measure n="1">
<staff n="1">
<layer n="1">
<!-- musical content of measure 1 goes here -->
</layer>
</staff>
</measure>
</section>
</score>
</mdiv>
</body>
</music>
</mei>