summaryrefslogtreecommitdiff
path: root/Sommerpsalm/satz.ly
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2021-02-05 19:46:44 +0100
committerErich Eckner <git@eckner.net>2021-02-05 19:46:44 +0100
commit618833473908b6a289332d8002df75a2268a1c75 (patch)
treedf1c3c4094e855e871b8cc5d15270c741220e945 /Sommerpsalm/satz.ly
parentc1b5ec7d88cdde7c9b870cf3af06fac8981dfe0b (diff)
downloadMusik-618833473908b6a289332d8002df75a2268a1c75.tar.xz
Sommerpsalm: satz.ly neu
Diffstat (limited to 'Sommerpsalm/satz.ly')
-rw-r--r--Sommerpsalm/satz.ly47
1 files changed, 47 insertions, 0 deletions
diff --git a/Sommerpsalm/satz.ly b/Sommerpsalm/satz.ly
new file mode 100644
index 0000000..58d75ce
--- /dev/null
+++ b/Sommerpsalm/satz.ly
@@ -0,0 +1,47 @@
+\score {
+ \header {
+ title = "Sommerpsalm"
+ poet = "Text: Carl David af Wirsén"
+ composer = "Musik: Waldemar Ahlén (1894-1982)"
+ arranger = "dt. Text: Josef Newerkla"
+ tagline = ""
+ }
+
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new Lyrics = textSopran { }
+ \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 { })
+ \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 { })
+ \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 })
+ >>
+ \layout {
+ indent = #0
+ \context {
+ \Staff
+ \RemoveEmptyStaves
+ \override VerticalAxisGroup #'remove-first = ##t
+ }
+ }
+}