summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly20
-rw-r--r--Ich_bin_die_Auferstehung/artikulation.ly9
2 files changed, 25 insertions, 4 deletions
diff --git a/Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly b/Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly
index 6c4fd5b..c880d17 100644
--- a/Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly
+++ b/Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly
@@ -1,5 +1,6 @@
\include "deutsch.ly"
#(ly:set-option 'relative-includes #t)
+\include "artikulation.ly"
\include "stimmen.ly"
\include "texte.ly"
#(ly:set-option 'relative-includes #f)
@@ -23,13 +24,24 @@
}
\new StaffGroup = choirStaff <<
- \new Voice = sopran << \global \sopranMelodie >>
+ \new Voice = sopran <<
+ \artikulation
+ \global \sopranMelodie
+ >>
\new Lyrics \lyricsto sopran { \textSopran }
- \new Voice = alt << \global \altMelodie >>
+ \new Voice = alt <<
+ \artikulation
+ \global \altMelodie
+ >>
\new Lyrics \lyricsto alt { \textAlt }
- \new Voice = tenor << \global \clef "G_8" \tenorMelodie >>
+ \new Voice = tenor <<
+ \artikulation
+ \global \clef "G_8" \tenorMelodie
+ >>
\new Lyrics \lyricsto tenor { \textTenor }
- \new Voice = bass << \global \clef "bass" \bassMelodie >>
+ \new Voice = bass <<
+ \global \clef "bass" \bassMelodie
+ >>
\new Lyrics \lyricsto bass { \textBass }
>>
diff --git a/Ich_bin_die_Auferstehung/artikulation.ly b/Ich_bin_die_Auferstehung/artikulation.ly
new file mode 100644
index 0000000..04732a6
--- /dev/null
+++ b/Ich_bin_die_Auferstehung/artikulation.ly
@@ -0,0 +1,9 @@
+
+ artikulation = {
+ s1*24 | \bar "||"
+ s1*4 |
+ s1. s2^\p |
+ s1*10 |
+ s1. s2^\p |
+ s1*10 | \bar "|."
+ }