diff options
author | Erich Eckner <git@eckner.net> | 2021-02-05 20:17:19 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2021-02-05 20:17:19 +0100 |
commit | df6760937a873ddb334ac84eedf20df55f73915c (patch) | |
tree | b51e83740bdfc4de0f0f12fa7ffb9436f33ce620 /Geh_aus_mein_Herz/satz.ly | |
parent | f102625241cb74f98e3701730cc0fe3ed5155453 (diff) | |
download | Musik-df6760937a873ddb334ac84eedf20df55f73915c.tar.xz |
Geh_aus_mein_Herz/satz.ly: ifdefs ordentlich escapen
Diffstat (limited to 'Geh_aus_mein_Herz/satz.ly')
-rw-r--r-- | Geh_aus_mein_Herz/satz.ly | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Geh_aus_mein_Herz/satz.ly b/Geh_aus_mein_Herz/satz.ly index f5bf8cd..08aff28 100644 --- a/Geh_aus_mein_Herz/satz.ly +++ b/Geh_aus_mein_Herz/satz.ly @@ -11,16 +11,16 @@ \new Voice = sopran { \global \voiceOne \sopranMelodie } \new Voice = alt { \global \voiceTwo \altMelodie } >> - ifdef(`STR_1',\new Lyrics \lyricsto sopran { \textI }) - ifdef(`STR_2',\new Lyrics \lyricsto sopran { \textII }) - ifdef(`STR_3',\new Lyrics \lyricsto sopran { \textIII }) - ifdef(`STR_4',\new Lyrics \lyricsto sopran { \textIV }) - ifdef(`STR_5',\new Lyrics \lyricsto sopran { \textV }) - ifdef(`STR_6',\new Lyrics \lyricsto sopran { \textVI }) - ifdef(`STR_7',\new Lyrics \lyricsto sopran { \textVII }) - ifdef(`STR_8',\new Lyrics \lyricsto sopran { \textVIII }) - ifdef(`STR_9',\new Lyrics \lyricsto sopran { \textIX }) - ifdef(`STR_10',\new Lyrics \lyricsto sopran { \textX }) + ifdef(`STR_1',`\new Lyrics \lyricsto sopran { \textI }') + ifdef(`STR_2',`\new Lyrics \lyricsto sopran { \textII }') + ifdef(`STR_3',`\new Lyrics \lyricsto sopran { \textIII }') + ifdef(`STR_4',`\new Lyrics \lyricsto sopran { \textIV }') + ifdef(`STR_5',`\new Lyrics \lyricsto sopran { \textV }') + ifdef(`STR_6',`\new Lyrics \lyricsto sopran { \textVI }') + ifdef(`STR_7',`\new Lyrics \lyricsto sopran { \textVII }') + ifdef(`STR_8',`\new Lyrics \lyricsto sopran { \textVIII }') + ifdef(`STR_9',`\new Lyrics \lyricsto sopran { \textIX }') + ifdef(`STR_10',`\new Lyrics \lyricsto sopran { \textX }') \new Staff << \new Voice = tenor { \global \clef "bass" \voiceOne \tenorMelodie } \new Voice = bass { \global \clef "bass" \voiceTwo \bassMelodie } |