diff options
author | Erich Eckner <git@eckner.net> | 2021-02-05 19:58:45 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2021-02-05 19:58:45 +0100 |
commit | 0ef254566b187ba3c8b072edd4b893e675c86788 (patch) | |
tree | d7a039c97d8c58dc17eb8572f3bd3cbd20011f06 /Sommerpsalm | |
parent | 0a852b0ce60950517b6693a4a2a45259dbf21738 (diff) | |
download | Musik-0ef254566b187ba3c8b072edd4b893e675c86788.tar.xz |
Sommerpsalm/satz.ly: ifdefs ordentlich escapen
Diffstat (limited to 'Sommerpsalm')
-rw-r--r-- | Sommerpsalm/satz.ly | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Sommerpsalm/satz.ly b/Sommerpsalm/satz.ly index 58d75ce..05b7b7e 100644 --- a/Sommerpsalm/satz.ly +++ b/Sommerpsalm/satz.ly @@ -13,28 +13,28 @@ \new Staff << \new Voice = sopran { \global << \artikulationFrauen \melodieSopran >> } >> - ifdef(`STR_1',\new Lyrics = textIf { }) - ifdef(`STR_2',\new Lyrics = textIIf { }) - ifdef(`STR_3',\new Lyrics = textIIIf { }) + ifdef(`STR_1',`\new Lyrics = textIf { }') + ifdef(`STR_2',`\new Lyrics = textIIf { }') + ifdef(`STR_3',`\new Lyrics = textIIIf { }') \new Staff << \new Voice = alt { \global << \artikulationFrauen \melodieAlt >> } >> \new Staff << \new Voice = tenor { \global \clef "G_8" << \artikulationMaenner \melodieTenor >> } >> - ifdef(`STR_1',\new Lyrics = textIm { }) - ifdef(`STR_2',\new Lyrics = textIIm { }) - ifdef(`STR_3',\new Lyrics = textIIIm { }) + ifdef(`STR_1',`\new Lyrics = textIm { }') + ifdef(`STR_2',`\new Lyrics = textIIm { }') + ifdef(`STR_3',`\new Lyrics = textIIIm { }') \new Staff << \new Voice = bass { \global \clef "bass" << \artikulationMaenner \melodieBass >> } >> - ifdef(`STR_1',\context Lyrics = textIf \lyricsto sopran { \textI }) - ifdef(`STR_2',\context Lyrics = textIIf \lyricsto sopran { \textII }) - ifdef(`STR_3',\context Lyrics = textIIIf \lyricsto sopran { \textIII }) - ifdef(`STR_1',\context Lyrics = textIm \lyricsto tenor { \textI }) - ifdef(`STR_2',\context Lyrics = textIIm \lyricsto tenor { \textII }) - ifdef(`STR_3',\context Lyrics = textIIIm \lyricsto tenor { \textIII }) + ifdef(`STR_1',`\context Lyrics = textIf \lyricsto sopran { \textI }') + ifdef(`STR_2',`\context Lyrics = textIIf \lyricsto sopran { \textII }') + ifdef(`STR_3',`\context Lyrics = textIIIf \lyricsto sopran { \textIII }') + ifdef(`STR_1',`\context Lyrics = textIm \lyricsto tenor { \textI }') + ifdef(`STR_2',`\context Lyrics = textIIm \lyricsto tenor { \textII }') + ifdef(`STR_3',`\context Lyrics = textIIIm \lyricsto tenor { \textIII }') >> \layout { indent = #0 |