fix style names
This commit is contained in:
parent
2e0c3a3a96
commit
3dfacd1e07
41 changed files with 118 additions and 118 deletions
|
@ -269,7 +269,7 @@ enum {
|
|||
|
||||
TEXT_STYLE_INSTRUMENT_EXCERPT,
|
||||
TEXT_STYLE_DYNAMICS,
|
||||
TEXT_STYLE_TECHNIK,
|
||||
TEXT_STYLE_TECHNIQUE,
|
||||
TEXT_STYLE_TEMPO,
|
||||
TEXT_STYLE_METRONOME,
|
||||
TEXT_STYLE_MEASURE_NUMBER,
|
||||
|
|
|
@ -263,11 +263,11 @@ void initStyle(MStyle* s)
|
|||
ALIGN_LEFT | ALIGN_BASELINE, QPointF(MM(1), MM(-2)), OA, QPointF(0.0, 100.0)));
|
||||
|
||||
AS(TextStyle(
|
||||
TR("Lyrics odd lines"), ff, 11, false, false, false,
|
||||
TR("Lyrics Odd Lines"), ff, 11, false, false, false,
|
||||
ALIGN_HCENTER | ALIGN_BASELINE, QPointF(0, 7), OS, QPointF(), true));
|
||||
|
||||
AS(TextStyle(
|
||||
TR("Lyrics even lines"), ff, 11, false, false, false,
|
||||
TR("Lyrics Even Lines"), ff, 11, false, false, false,
|
||||
ALIGN_HCENTER | ALIGN_BASELINE, QPointF(0, 7), OS, QPointF(), true));
|
||||
|
||||
AS(TextStyle(
|
||||
|
@ -275,15 +275,15 @@ void initStyle(MStyle* s)
|
|||
ALIGN_CENTER, QPointF(), OA, QPointF(), true));
|
||||
|
||||
AS(TextStyle(
|
||||
TR( "InstrumentsLong"), ff, 12, false, false, false,
|
||||
TR( "Instrument Name (Long)"), ff, 12, false, false, false,
|
||||
ALIGN_RIGHT | ALIGN_VCENTER, QPointF(), OA, QPointF(), true));
|
||||
|
||||
AS(TextStyle(
|
||||
TR( "InstrumentsShort"), ff, 12, false, false, false,
|
||||
TR( "Instrument Name (Short)"), ff, 12, false, false, false,
|
||||
ALIGN_RIGHT | ALIGN_VCENTER, QPointF(), OA, QPointF(), true));
|
||||
|
||||
AS(TextStyle(
|
||||
TR( "InstrumentsExcerpt"), ff, 18, false, false, false,
|
||||
TR( "Instrument Name (Part)"), ff, 18, false, false, false,
|
||||
ALIGN_LEFT | ALIGN_TOP, QPointF(), OA, QPointF()));
|
||||
|
||||
AS(TextStyle(
|
||||
|
@ -293,7 +293,7 @@ void initStyle(MStyle* s)
|
|||
ALIGN_HCENTER | ALIGN_BASELINE, QPointF(0.0, 8.0), OS, QPointF(), true));
|
||||
|
||||
AS(TextStyle(
|
||||
TR( "Technik"), ff, 12, false, true, false,
|
||||
TR( "Technique"), ff, 12, false, true, false,
|
||||
ALIGN_LEFT | ALIGN_BASELINE, QPointF(0.0, -2.0), OS));
|
||||
|
||||
AS(TextStyle(
|
||||
|
@ -313,7 +313,7 @@ void initStyle(MStyle* s)
|
|||
ALIGN_HCENTER | ALIGN_TOP, QPointF(0, 6)));
|
||||
|
||||
AS(TextStyle(
|
||||
TR( "Tuplets"), ff, 10, false, true, false,
|
||||
TR( "Tuplet"), ff, 10, false, true, false,
|
||||
ALIGN_CENTER, QPointF(), OA, QPointF(), true));
|
||||
|
||||
AS(TextStyle(
|
||||
|
@ -326,7 +326,7 @@ void initStyle(MStyle* s)
|
|||
ALIGN_LEFT, QPointF(0, -4.0), OS, QPointF(), true));
|
||||
|
||||
AS(TextStyle(
|
||||
TR( "Chordname"), ff, 12, false, false, false,
|
||||
TR( "Chord Symbol"), ff, 12, false, false, false,
|
||||
ALIGN_LEFT | ALIGN_BASELINE, QPointF(), OS, QPointF(), true));
|
||||
|
||||
AS(TextStyle(
|
||||
|
@ -358,7 +358,7 @@ void initStyle(MStyle* s)
|
|||
TR( "Frame"), ff, 12, false, false, false, ALIGN_LEFT | ALIGN_TOP));
|
||||
|
||||
AS(TextStyle(
|
||||
TR( "TextLine"), ff, 12, false, false, false,
|
||||
TR( "Text Line"), ff, 12, false, false, false,
|
||||
ALIGN_LEFT | ALIGN_VCENTER, QPointF(), OS, QPointF(), true));
|
||||
|
||||
AS(TextStyle(
|
||||
|
@ -638,7 +638,7 @@ StyleData::StyleData(const StyleData& s)
|
|||
_textStyles = s._textStyles;
|
||||
_pageFormat.copy(s._pageFormat);
|
||||
_spatium = s._spatium;
|
||||
for (int i = 0; i < ARTICULATIONS; ++i)
|
||||
for (int i = 0; i < (int)ARTICULATIONS; ++i)
|
||||
_articulationAnchor[i] = s._articulationAnchor[i];
|
||||
}
|
||||
|
||||
|
|
|
@ -460,7 +460,7 @@ bool Text::readProperties(XmlReader& e)
|
|||
case 11: i = TEXT_STYLE_INSTRUMENT_EXCERPT; break;
|
||||
|
||||
case 12: i = TEXT_STYLE_DYNAMICS; break;
|
||||
case 13: i = TEXT_STYLE_TECHNIK; break;
|
||||
case 13: i = TEXT_STYLE_TECHNIQUE; break;
|
||||
case 14: i = TEXT_STYLE_TEMPO; break;
|
||||
case 15: i = TEXT_STYLE_METRONOME; break;
|
||||
case 16: i = TEXT_STYLE_FOOTER; break; // TEXT_STYLE_COPYRIGHT
|
||||
|
|
|
@ -2276,7 +2276,7 @@ void OveToMScore::convertExpressions(Measure* measure, int part, int staff, int
|
|||
int absTick = mtt_->getTick(measure->no(), expressionPtr->getTick());
|
||||
Text* t = new Text(score_);
|
||||
|
||||
t->setTextStyleType(TEXT_STYLE_TECHNIK);
|
||||
t->setTextStyleType(TEXT_STYLE_TECHNIQUE);
|
||||
t->setText(expressionPtr->getText());
|
||||
t->setTrack(track);
|
||||
|
||||
|
|
|
@ -2706,7 +2706,7 @@ void MusicXml::direction(Measure* measure, int staff, QDomElement e)
|
|||
}
|
||||
else {
|
||||
t = new Text(score);
|
||||
t->setTextStyleType(TEXT_STYLE_TECHNIK);
|
||||
t->setTextStyleType(TEXT_STYLE_TECHNIQUE);
|
||||
}
|
||||
if (!fontSize.isEmpty() || !fontStyle.isEmpty() || !fontWeight.isEmpty()) {
|
||||
if (!fontSize.isEmpty()) {
|
||||
|
|
|
@ -84,12 +84,12 @@
|
|||
<Chord>
|
||||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>Lyrics</text>
|
||||
</Lyrics>
|
||||
<Lyrics>
|
||||
<no>1</no>
|
||||
<style>Lyrics even lines</style>
|
||||
<style>Lyrics Even Lines</style>
|
||||
<text>Lyrics</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -100,12 +100,12 @@
|
|||
<Chord>
|
||||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>first</text>
|
||||
</Lyrics>
|
||||
<Lyrics>
|
||||
<no>1</no>
|
||||
<style>Lyrics even lines</style>
|
||||
<style>Lyrics Even Lines</style>
|
||||
<text>second</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -118,12 +118,12 @@
|
|||
<Chord>
|
||||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>line</text>
|
||||
</Lyrics>
|
||||
<Lyrics>
|
||||
<no>1</no>
|
||||
<style>Lyrics even lines</style>
|
||||
<style>Lyrics Even Lines</style>
|
||||
<text>line</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
|
|
@ -215,7 +215,7 @@ p, li { white-space: pre-wrap; }
|
|||
<VBox>
|
||||
<height>10</height>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Track 1</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -110,7 +110,7 @@ p, li { white-space: pre-wrap; }
|
|||
<actualNotes>3</actualNotes>
|
||||
<baseNote>eighth</baseNote>
|
||||
<Number>
|
||||
<style>Tuplets</style>
|
||||
<style>Tuplet</style>
|
||||
<text>3</text>
|
||||
</Number>
|
||||
</Tuplet>
|
||||
|
@ -252,7 +252,7 @@ p, li { white-space: pre-wrap; }
|
|||
<VBox>
|
||||
<height>10</height>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Gtr 2</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -91,7 +91,7 @@
|
|||
<Chord>
|
||||
<durationType>half</durationType>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>Nel</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -103,7 +103,7 @@
|
|||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>mez</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -115,7 +115,7 @@
|
|||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>zo</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -132,7 +132,7 @@
|
|||
<Chord>
|
||||
<durationType>half</durationType>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>del</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -144,7 +144,7 @@
|
|||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>cam</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -175,7 +175,7 @@
|
|||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<ticks>480</ticks>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>min</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -203,7 +203,7 @@
|
|||
<durationType>eighth</durationType>
|
||||
<Beam>1</Beam>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>di</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -220,7 +220,7 @@
|
|||
<Beam>2</Beam>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>no</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -233,7 +233,7 @@
|
|||
<Beam>2</Beam>
|
||||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>stra</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -246,7 +246,7 @@
|
|||
<Beam>2</Beam>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>vi</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -272,7 +272,7 @@
|
|||
<durationType>whole</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>ta.</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -289,7 +289,7 @@
|
|||
<Chord>
|
||||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>Nel</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -301,7 +301,7 @@
|
|||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>mez</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -313,7 +313,7 @@
|
|||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>zo</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -324,7 +324,7 @@
|
|||
<Chord>
|
||||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>del</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -347,7 +347,7 @@
|
|||
<Beam>3</Beam>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>cam</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -369,7 +369,7 @@
|
|||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<ticks>480</ticks>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>min</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -401,7 +401,7 @@
|
|||
<durationType>eighth</durationType>
|
||||
<Beam>4</Beam>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>di</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -414,7 +414,7 @@
|
|||
<Beam>4</Beam>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>no</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -427,7 +427,7 @@
|
|||
<Beam>4</Beam>
|
||||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>stra</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -445,7 +445,7 @@
|
|||
<durationType>half</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>vi</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -470,7 +470,7 @@
|
|||
<durationType>whole</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>ta.</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
|
|
@ -98,7 +98,7 @@
|
|||
<Chord>
|
||||
<durationType>half</durationType>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>Nel</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -110,7 +110,7 @@
|
|||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>mez</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -122,7 +122,7 @@
|
|||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>zo</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -139,7 +139,7 @@
|
|||
<Chord>
|
||||
<durationType>half</durationType>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>del</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -151,7 +151,7 @@
|
|||
<durationType>quarter</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>cam</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -177,7 +177,7 @@
|
|||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<ticks>480</ticks>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>min</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -202,7 +202,7 @@
|
|||
<Chord>
|
||||
<durationType>eighth</durationType>
|
||||
<Lyrics>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>di</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -214,7 +214,7 @@
|
|||
<durationType>eighth</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>no</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -226,7 +226,7 @@
|
|||
<durationType>eighth</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>stra</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -238,7 +238,7 @@
|
|||
<durationType>eighth</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>begin</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>vi</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
@ -263,7 +263,7 @@
|
|||
<durationType>whole</durationType>
|
||||
<Lyrics>
|
||||
<syllabic>end</syllabic>
|
||||
<style>Lyrics odd lines</style>
|
||||
<style>Lyrics Odd Lines</style>
|
||||
<text>ta.</text>
|
||||
</Lyrics>
|
||||
<Note>
|
||||
|
|
|
@ -774,7 +774,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1143,7 +1143,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -787,7 +787,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>fingering</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1165,7 +1165,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>fingering</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -777,7 +777,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1149,7 +1149,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -784,7 +784,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1163,7 +1163,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -778,7 +778,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1151,7 +1151,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -784,7 +784,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1163,7 +1163,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -786,7 +786,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>fingering</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1168,7 +1168,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>fingering</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -791,7 +791,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>fingering</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1173,7 +1173,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>fingering</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -786,7 +786,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>fingering</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1168,7 +1168,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>fingering</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -782,7 +782,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1159,7 +1159,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -1027,7 +1027,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart2</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1578,7 +1578,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart2</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -1045,7 +1045,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart2</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1605,7 +1605,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart2</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -1023,7 +1023,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart2</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1572,7 +1572,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart2</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -1022,7 +1022,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart2</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1572,7 +1572,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart2</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -1023,7 +1023,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart2</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1572,7 +1572,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart2</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -778,7 +778,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1151,7 +1151,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -782,7 +782,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1159,7 +1159,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -778,7 +778,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1154,7 +1154,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -781,7 +781,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1157,7 +1157,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -778,7 +778,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1154,7 +1154,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -794,7 +794,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>breath</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1173,7 +1173,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>breath</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -784,7 +784,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1163,7 +1163,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -778,7 +778,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1151,7 +1151,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -784,7 +784,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1163,7 +1163,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -778,7 +778,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1151,7 +1151,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -784,7 +784,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1163,7 +1163,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -778,7 +778,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Alto</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -1151,7 +1151,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>testpart1</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Tenor</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -477,7 +477,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>measure</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Piano</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -740,7 +740,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>measure</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Flute</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -449,7 +449,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>measure</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Piano</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -694,7 +694,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>measure</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Flute</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -474,7 +474,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>measure</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Piano</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -735,7 +735,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>measure</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Flute</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
|
@ -485,7 +485,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>measure</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Piano</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
@ -752,7 +752,7 @@ p, li { white-space: pre-wrap; }
|
|||
<text>measure</text>
|
||||
</Text>
|
||||
<Text>
|
||||
<style>InstrumentsExcerpt</style>
|
||||
<style>Instrument Name (Part)</style>
|
||||
<text>Flute</text>
|
||||
</Text>
|
||||
</VBox>
|
||||
|
|
Loading…
Reference in a new issue