Last active
March 21, 2017 21:52
-
-
Save lasconic/2cdf9643752b52668e6355faf6237906 to your computer and use it in GitHub Desktop.
Compare scope vs system https://w3c.github.io/mnx/overview/#system-notations
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<mnx> | |
<head> | |
<identification> | |
<title>Hot Cross Buns</title> | |
</identification> | |
</head> | |
<score content="cwmn"> | |
<part> | |
<part-name>Melody</part-name> | |
<measure> | |
<attributes> | |
<clef sign="G" line="2"/> | |
<tempo bpm="120/4" scope="system"/> | |
<time signature="4/4" scope="system"/> | |
</attributes> | |
<sequence> | |
<direction placement="above"> | |
<words>With heavy irony</words> | |
</direction> | |
<event value="4"><note pitch="E4"/></event> | |
<event value="4"><note pitch="D4"/></event> | |
<event value="2"><note pitch="C4"/></event> | |
</sequence> | |
</measure> | |
<measure> | |
<sequence> | |
<event value="4"><note pitch="E4"/></event> | |
<event value="4"><note pitch="D4"/></event> | |
<event value="4"><note pitch="C4"/></event> | |
<!-- dramatic pause before the exciting part --> | |
<event value="4"><rest/></event> | |
</sequence> | |
</measure> | |
<measure> | |
<sequence> | |
<event value="8"><note pitch="C4"/></event> | |
<event value="8"><note pitch="C4"/></event> | |
<event value="8"><note pitch="C4"/></event> | |
<event value="8"><note pitch="C4"/></event> | |
<event value="8"><note pitch="D4"/></event> | |
<event value="8"><note pitch="D4"/></event> | |
<event value="8"><note pitch="D4"/></event> | |
<event value="8"><note pitch="D4"/></event> | |
</sequence> | |
</measure> | |
<measure> | |
<sequence> | |
<event value="4"><note pitch="E4"/></event> | |
<event value="4"><note pitch="D4"/></event> | |
<event value="2"><note pitch="C4"/></event> | |
</sequence> | |
</measure> | |
</part> | |
</score> | |
</mnx> |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<mnx> | |
<head> | |
<identification> | |
<title>Hot Cross Buns</title> | |
</identification> | |
</head> | |
<score content="cwmn"> | |
<system> | |
<measure> | |
<attributes> | |
<tempo bpm="120/4"/> | |
<time signature="4/4"/> | |
</attributes> | |
</measure> | |
<measure/> | |
<measure/> | |
<measure/> | |
</system> | |
<part> | |
<part-name>Melody</part-name> | |
<measure> | |
<attributes> | |
<clef sign="G" line="2"/> | |
</attributes> | |
<sequence> | |
<direction placement="above"> | |
<words>With heavy irony</words> | |
</direction> | |
<event value="4"><note pitch="E4"/></event> | |
<event value="4"><note pitch="D4"/></event> | |
<event value="2"><note pitch="C4"/></event> | |
</sequence> | |
</measure> | |
<measure> | |
<sequence> | |
<event value="4"><note pitch="E4"/></event> | |
<event value="4"><note pitch="D4"/></event> | |
<event value="4"><note pitch="C4"/></event> | |
<!-- dramatic pause before the exciting part --> | |
<event value="4"><rest/></event> | |
</sequence> | |
</measure> | |
<measure> | |
<sequence> | |
<event value="8"><note pitch="C4"/></event> | |
<event value="8"><note pitch="C4"/></event> | |
<event value="8"><note pitch="C4"/></event> | |
<event value="8"><note pitch="C4"/></event> | |
<event value="8"><note pitch="D4"/></event> | |
<event value="8"><note pitch="D4"/></event> | |
<event value="8"><note pitch="D4"/></event> | |
<event value="8"><note pitch="D4"/></event> | |
</sequence> | |
</measure> | |
<measure> | |
<sequence> | |
<event value="4"><note pitch="E4"/></event> | |
<event value="4"><note pitch="D4"/></event> | |
<event value="2"><note pitch="C4"/></event> | |
</sequence> | |
</measure> | |
</part> | |
</score> | |
</mnx> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment