-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tutorials: Final steps of march tutorial #57
Changes from 11 commits
92c5a79
4ca8fa6
c939d7c
7a37968
5594406
bcf8298
4694065
5e52aee
1206338
1413454
216a74d
d2e7fd0
0dfe67c
abe8a8b
db2a720
272606f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<div> | ||
<p id="tutorialGoal">It's time to combine what you've learned in last two steps: In this step you will encode at once the next measure and the second note of the example.</p> | ||
|
||
<p id="tutorialTask">In the editor below, add another <code><measure></code> element (<code>n="1"</code>) with staff and layer next to the existing pickup measure. Add the second note of the example (a quarter note e4) to this new measure. Don’t worry about the measure being too short in given time signature – you’ll fill it in in the next steps.</p> | ||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<section> | ||
<measure n="0"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="b" oct="3" dur="4" /> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<!-- Your encoding goes here --> | ||
</section> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<mei xmlns="http://www.music-encoding.org/ns/mei"> | ||
<meiHead> | ||
<fileDesc> | ||
<titleStmt> | ||
<title type="main">March</title> | ||
</titleStmt> | ||
<pubStmt></pubStmt> | ||
</fileDesc> | ||
</meiHead> | ||
<music> | ||
<body> | ||
<mdiv> | ||
<score> | ||
<scoreDef key.sig="3f" meter.sym="cut"> | ||
<staffGrp> | ||
<staffDef n="1" lines="5" clef.shape="G" clef.line="2" /> | ||
</staffGrp> | ||
</scoreDef> | ||
<?preview-start?> | ||
<?edit-start?> | ||
<section> | ||
<measure n="0"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="b" oct="3" dur="4" /> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<measure n="1"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="e" oct="4" dur="4" /> | ||
</layer> | ||
</staff> | ||
</measure> | ||
</section> | ||
<?edit-end?> | ||
<?preview-end?> | ||
</score> | ||
</mdiv> | ||
</body> | ||
</music> | ||
</mei> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<div> | ||
<p id="tutorialGoal">In this step you will encode a beamed group of notes.</p> | ||
|
||
<p>To group notes under a beam within a measure, the <code><beam></code> element is to be used. The <code><beam></code> element is a container for a series of explicitly beamed events that begins and ends entirely within a measure.</p> | ||
|
||
<p id="tutorialTask">In the editor below, please add a <code><beam></code> element at the specified position before adding the two child <code><note></code>'s separately (e flat and g).</p> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No apostrophe after There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<measure n="1"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="e" oct="4" dur="4" /> | ||
<!-- Your encoding goes here --> | ||
</layer> | ||
</staff> | ||
</measure> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<mei xmlns="http://www.music-encoding.org/ns/mei"> | ||
<meiHead> | ||
<fileDesc> | ||
<titleStmt> | ||
<title type="main">March</title> | ||
</titleStmt> | ||
<pubStmt></pubStmt> | ||
</fileDesc> | ||
</meiHead> | ||
<music> | ||
<body> | ||
<mdiv> | ||
<score> | ||
<scoreDef key.sig="3f" meter.sym="cut"> | ||
<staffGrp> | ||
<staffDef n="1" lines="5" clef.shape="G" clef.line="2" /> | ||
</staffGrp> | ||
</scoreDef> | ||
<?preview-start?> | ||
<section> | ||
<measure n="0"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="b" oct="3" dur="4" /> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<?edit-start?> | ||
<measure n="1"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="e" oct="4" dur="4" /> | ||
<beam> | ||
<note pname="e" oct="4" dur="8" /> | ||
<note pname="g" oct="4" dur="8" /> | ||
</beam> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<?edit-end?> | ||
</section> | ||
<?preview-end?> | ||
</score> | ||
</mdiv> | ||
</body> | ||
</music> | ||
</mei> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<div> | ||
<p id="tutorialGoal">In this step you will learn to encode dotted durations.</p> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "You will learn how to encode..." There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
|
||
<p>To encode a dotted rhythm, you need to use a <code>@dots</code> attribute on <code><note></code> element and set the number of dots as the attribute's value, e.g. <code>“1”</code> or <code>“2”</code>.</p> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "on a note element" There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
|
||
<p id="tutorialTask">Please encode the rest of the measure (<code>n=1</code>) in the editor below by adding two <code><note></code> elements with different rhythmic values (dotted quarter, eighth) next to the <code><beam></code> element.</p> | ||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<measure n="1"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="e" oct="4" dur="4" /> | ||
<beam> | ||
<note pname="e" oct="4" dur="8" /> | ||
<note pname="g" oct="4" dur="8" /> | ||
</beam> | ||
<!-- Your encoding goes here --> | ||
</layer> | ||
</staff> | ||
</measure> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<mei xmlns="http://www.music-encoding.org/ns/mei"> | ||
<meiHead> | ||
<fileDesc> | ||
<titleStmt> | ||
<title type="main">March</title> | ||
</titleStmt> | ||
<pubStmt></pubStmt> | ||
</fileDesc> | ||
</meiHead> | ||
<music> | ||
<body> | ||
<mdiv> | ||
<score> | ||
<scoreDef key.sig="3f" meter.sym="cut"> | ||
<staffGrp> | ||
<staffDef n="1" lines="5" clef.shape="G" clef.line="2" /> | ||
</staffGrp> | ||
</scoreDef> | ||
<?preview-start?> | ||
<section> | ||
<measure n="0"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="b" oct="3" dur="4" /> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<?edit-start?> | ||
<measure n="1"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="e" oct="4" dur="4" /> | ||
<beam> | ||
<note pname="e" oct="4" dur="8" /> | ||
<note pname="g" oct="4" dur="8" /> | ||
</beam> | ||
<note dur="4" dots="1" pname="f" oct="4"></note> | ||
<note dur="8" pname="d" oct="4"></note> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<?edit-end?> | ||
</section> | ||
<?preview-end?> | ||
</score> | ||
</mdiv> | ||
</body> | ||
</music> | ||
</mei> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<div> | ||
<p id="tutorialGoal">Ok, let's encode the complete next measure to repeat all the things you've learned in the previous steps.</p> | ||
|
||
<p id="tutorialTask">Please encode the next measure (<code>n=2</code>) in the editor below. Add a staff and layer element which contains 4 child elements: a quarter <code><note></code>, a <code><beam></code> with to eighth <code><note></code>'s and a dotted quarter <code><note></code> with an eighth <code><note></code>.</p> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "...a beam with two eighth notes..." There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<!-- Your encoding goes here --> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<mei xmlns="http://www.music-encoding.org/ns/mei"> | ||
<meiHead> | ||
<fileDesc> | ||
<titleStmt> | ||
<title type="main">March</title> | ||
</titleStmt> | ||
<pubStmt></pubStmt> | ||
</fileDesc> | ||
</meiHead> | ||
<music> | ||
<body> | ||
<mdiv> | ||
<score> | ||
<scoreDef key.sig="3f" meter.sym="cut"> | ||
<staffGrp> | ||
<staffDef n="1" lines="5" clef.shape="G" clef.line="2" /> | ||
</staffGrp> | ||
</scoreDef> | ||
<?preview-start?> | ||
<section> | ||
<measure n="0"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="b" oct="3" dur="4" /> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<measure n="1"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="e" oct="4" dur="4" /> | ||
<beam> | ||
<note pname="e" oct="4" dur="8" /> | ||
<note pname="g" oct="4" dur="8" /> | ||
</beam> | ||
<note pname="f" oct="4" dur="4" dots="1" ></note> | ||
<note pname="d" oct="4" dur="8"></note> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<?edit-start?> | ||
<measure n="2"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="e" oct="4" dur="4"></note> | ||
<beam> | ||
<note pname="e" oct="4" dur="8" ></note> | ||
<note pname="g" oct="4" dur="8" ></note> | ||
</beam> | ||
<note pname="b" oct="4" dur="4" dots="1"></note> | ||
<note pname="g" oct="4" dur="8" ></note> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<?edit-end?> | ||
</section> | ||
<?preview-end?> | ||
</score> | ||
</mdiv> | ||
</body> | ||
</music> | ||
</mei> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<div> | ||
<p id="tutorialGoal">You should be prepared now to encode the note values of the final two measures of the example.</p> | ||
|
||
<p>Ignore the additional elements, such as dynamics, slurs and accents at this point as they will be adressed in the next steps separately.</p> | ||
|
||
<p>The pause is encoded with a <code><rest></code> element having a <code>@dur</code> attribute analogue to the <code><note></code> element.</p> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "analogue" -> "similar" ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
|
||
<p id="tutorialTask">Please encode the next measure (<code>n=2</code>) in the editor below. Add a staff and layer element which contains 4 child elements: a quarter <code><note></code>, a <code><beam></code> with to eighth <code><note></code>'s and a dotted quarter <code><note></code> with an eighth <code><note></code>.</p> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "...two eighth notes..." There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed. Tutorial task was a copy & paste error from step 8. |
||
</div> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<!-- Your encoding goes here --> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<mei xmlns="http://www.music-encoding.org/ns/mei"> | ||
<meiHead> | ||
<fileDesc> | ||
<titleStmt> | ||
<title type="main">March</title> | ||
</titleStmt> | ||
<pubStmt></pubStmt> | ||
</fileDesc> | ||
</meiHead> | ||
<music> | ||
<body> | ||
<mdiv> | ||
<score> | ||
<scoreDef key.sig="3f" meter.sym="cut"> | ||
<staffGrp> | ||
<staffDef n="1" lines="5" clef.shape="G" clef.line="2" /> | ||
</staffGrp> | ||
</scoreDef> | ||
<?preview-start?> | ||
<section> | ||
<measure n="0"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="b" oct="3" dur="4" /> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<measure n="1"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="e" oct="4" dur="4" /> | ||
<beam> | ||
<note pname="e" oct="4" dur="8" /> | ||
<note pname="g" oct="4" dur="8" /> | ||
</beam> | ||
<note pname="f" oct="4" dur="4" dots="1" ></note> | ||
<note pname="d" oct="4" dur="8"></note> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<measure n="2"> | ||
<staff n="1"> | ||
<layer> | ||
<note pname="e" oct="4" dur="4"></note> | ||
<beam> | ||
<note pname="e" oct="4" dur="8" ></note> | ||
<note pname="g" oct="4" dur="8" ></note> | ||
</beam> | ||
<note pname="b" oct="4" dur="4" dots="1"></note> | ||
<note pname="g" oct="4" dur="8" ></note> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<?edit-start?> | ||
<measure n="3"> | ||
<staff n="1"> | ||
<layer> | ||
<beam> | ||
<note dur="8" pname="a" oct="4"></note> | ||
<note dur="8" pname="b" oct="4"></note> | ||
<note dur="8" pname="c" oct="5"></note> | ||
<note dur="8" pname="d" oct="5"></note> | ||
</beam> | ||
<note dur="4" pname="e" oct="5"></note> | ||
<beam> | ||
<note dur="8" pname="d" oct="5"></note> | ||
<note dur="8" pname="b" oct="4"></note> | ||
</beam> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<measure n="4"> | ||
<staff n="1"> | ||
<layer> | ||
<note dur="4" pname="c" oct="5"></note> | ||
<note dur="4" pname="b" oct="4"></note> | ||
<rest dur="4"/> | ||
</layer> | ||
</staff> | ||
</measure> | ||
<?edit-end?> | ||
</section> | ||
<?preview-end?> | ||
</score> | ||
</mdiv> | ||
</body> | ||
</music> | ||
</mei> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"norwegian" -> "Norwegian"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done