diff options
Diffstat (limited to 'hr/stch/golle/II')
-rw-r--r-- | hr/stch/golle/II/dynArt.ly | 36 | ||||
-rw-r--r-- | hr/stch/golle/II/hodie.ly | 45 | ||||
-rw-r--r-- | hr/stch/golle/II/hodie.ps | bin | 0 -> 514142 bytes | |||
-rw-r--r-- | hr/stch/golle/II/parts.ly | 86 | ||||
-rw-r--r-- | hr/stch/golle/II/stimmen.ly | 352 | ||||
-rw-r--r-- | hr/stch/golle/II/texte.ly | 46 |
6 files changed, 565 insertions, 0 deletions
diff --git a/hr/stch/golle/II/dynArt.ly b/hr/stch/golle/II/dynArt.ly new file mode 100644 index 0000000..bd2d482 --- /dev/null +++ b/hr/stch/golle/II/dynArt.ly @@ -0,0 +1,36 @@ +%some settings% vim: ai sw=2 lbr nu encoding=utf8 + + meta = { + %(dynamic) marks global to all voices + \dynamicUp + %\repeat unfold <+number of parts+> { + %s4*<+number of measures within a part+> + %} + } + +% articulation + + sopranArt = { + %\repeat unfold <+number of parts+> { + %s4*<+number of measures within a part+> + %} + } + + altArt = { + %\repeat unfold <+number of parts+> { + %s4*<+number of measures within a part+> + %} + } + + tenorArt = { + %\repeat unfold <+number of parts+> { + %s4*<+number of measures within a part+> + %} + } + + bassArt = { + %\repeat unfold <+number of parts+> { + %s4*<+number of measures within a part+> + %} + } + diff --git a/hr/stch/golle/II/hodie.ly b/hr/stch/golle/II/hodie.ly new file mode 100644 index 0000000..36bfb49 --- /dev/null +++ b/hr/stch/golle/II/hodie.ly @@ -0,0 +1,45 @@ +%some settings% vim: ai sw=2 lbr nu encoding=utf8 + +\version "2.10.10" +\include "parts.ly" +\include "texte.ly" + + \header { + title = "Hodie Christus natus est" + composer = "JG" + %opus = "<+Werk+>" + %tagline = "" + } + + \paper { + %<+weitere Einstellungen+> + } + + \midi { + %\tempo 4 = <+bpm+> + } + + \layout { + indent = #0 + \context { + \Staff + \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3.5) + } + %\context { + %\Score + %\remove "Timing_translator" + %\remove "Default_bar_line_engraver" + %} + %\context { + %\ChoirStaff + %\consists "Timing_translator" + %\consists "Default_bar_line_engraver" + %} + } + + #(set-global-staff-size 12) + + \score { + \wholeMusic + } + diff --git a/hr/stch/golle/II/hodie.ps b/hr/stch/golle/II/hodie.ps Binary files differnew file mode 100644 index 0000000..d82c4a8 --- /dev/null +++ b/hr/stch/golle/II/hodie.ps diff --git a/hr/stch/golle/II/parts.ly b/hr/stch/golle/II/parts.ly new file mode 100644 index 0000000..49430b2 --- /dev/null +++ b/hr/stch/golle/II/parts.ly @@ -0,0 +1,86 @@ +%some settings% vim: ai sw=2 lbr nu encoding=utf8 + +\include "stimmen.ly" +\include "texte.ly" + + partA = \new ChoirStaff << + \new Staff = sopran << + %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." } + \new Voice = "soprane" { \global \sopranMelodieA } + %\lyricsto soprane \sopranText + >> + \new Staff = alt << + \new Voice = "alti" { \global \altMelodieA } + %\lyricsto alti \altText + >> + \new Staff = tenor << + \new Voice = "tenoere" { \global \tenorMelodieA } + %\lyricsto tenoere \tenorText + >> + \new Staff = bass << + \new Voice = "baesse" { \global \bassMelodieA } + %\lyricsto baesse \bassText + >> + >> + + partB = \new ChoirStaff << + \new Staff = sopran << + %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." } + \new Voice = "soprane" { \sopranMelodieB } + %\lyricsto soprane \sopranText + >> + \new Staff = alt << + \new Voice = "alti" { \altMelodieB } + %\lyricsto alti \altText + >> + \new Staff = tenor << + \new Voice = "tenoere" { \tenorMelodieB } + %\lyricsto tenoere \tenorText + >> + \new Staff = bass << + \new Voice = "baesse" { \bassMelodieB } + %\lyricsto baesse \bassText + >> + >> + + partC = \new ChoirStaff << + \new Staff = sopran << + %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." } + \new Voice = "soprane" { \sopranMelodieC } + %\lyricsto soprane \sopranText + >> + \new Staff = alt << + \new Voice = "alti" { \altMelodieC } + %\lyricsto alti \altText + >> + \new Staff = tenor << + \new Voice = "tenoere" { \tenorMelodieC } + %\lyricsto tenoere \tenorText + >> + \new Staff = bass << + \new Voice = "baesse" { \bassMelodieC } + %\lyricsto baesse \bassText + >> + >> + + wholeMusic = { + << + \new Staff = TenorSolo << + \new Voice = "Tsolo" { \global \tenorSolo } + \lyricsto Tsolo \Tenor + >> + \partA + >> + \\ + \break + \partB + \\ + \break + << + \new Staff = SopranSolo << + \new Voice = "Ssolo" { \global \sopranSolo } + \lyricsto Ssolo \Sopran + >> + \partC + >> + } diff --git a/hr/stch/golle/II/stimmen.ly b/hr/stch/golle/II/stimmen.ly new file mode 100644 index 0000000..f1b2a41 --- /dev/null +++ b/hr/stch/golle/II/stimmen.ly @@ -0,0 +1,352 @@ +%some settings% vim: ai sw=2 lbr nu encoding=utf8 + + \include "dynArt.ly" + + global = { + \key c \major + \override Score.TimeSignature #'style = #'() + \time 2/2 + } + +% Die Stimmen + + tenorSolo = \relative c'' { + \repeat volta 2 { + d4. d8 c4 a4 + g4 d4 a'2 ~ a1 ~ a2 r2 + f'8. f16 e4 d4 c4 + a4 c4 d2 ~ d1 ~ d2 r2 + d4 d8 d8 d4 a4 + } + \alternative { + { + c4 a4 a2 ~ a2 r2 + } + { + c4 a4 a2 ~ a2 + } + } + } + + sopranSolo = \relative c'' { + %-------------------------------% + %--------- Und es sang ---------% + %-------------------------------% + r2*8 + \time 3/2 + r4 d2 b4 d2 ~ \time 2/2 d2 r4 d4 ~ d4 d4 d4 g4 + f4( d4 ) d2 ~ d2 r4 a4 ~ a4 d4 c4 c4 + a1 ~ a2 r4 d4 + \time 3/2 + a4 a8 a8 c4. c8 f4 f4 + e4( a,4 ) a1 + } + + sopranMelodieA = \relative c'' { + << + { \meta } + %\sopranArt + %the actual tune + { + \repeat volta 2 { + r1 r1 + d4. c8 a4 f4 + g4 d4 a'2 + r1 r1 + f'4. e8 d4 c4 + a4 c4 d2 + f4. e8 d4 c4 + } + \alternative { + { + a4 c4 d2 ~ d2 r2 + } + { + a4 c4 d2 ~ d2 r2 + } + } + } + >> + } + + sopranMelodieB = \relative c'' { + << + { + %-------------------------------% + %-------- Wißt ihr noch --------% + %-------------------------------% + \repeat volta 4 { + \time 3/2 + e,4. e8 f4 f4 g4 g4 + \time 2/2 + a2 a2 + \time 3/2 + a4. a8 b4 b4 c4 c4 + d2 d1 + d4. d8 d4 d4 f4 f4 + \time 2/2 + d2 d2 + \time 3/2 + d4. d8 f,4 f4 d4 d4 + a'1 r2 + d4. d8 f,4 f4 d4 d4 + a'1 r2 + } + } + >> + } + + sopranMelodieC = \relative c'' { + << + { + %-------------------------------% + %--------- Und es sang ---------% + %-------------------------------% + \repeat unfold 2 { + \time 3/2 + e,4. e8 f4 f4 g4 g4 + \time 2/2 + a2 a2 + \time 3/2 + a4. a8 b4 b4 c4 c4 + d2 d1 + d4. d8 d4 d4 f4 f4 + \time 2/2 + d2 d2 + \time 3/2 + d4. d8 f,4 f4 d4 d4 + a'1 r2 + d4. d8 f,4 f4 d4 d4 + } + \alternative { + { a'1. ~ a1. } + { a'1 r2 } + } + } + >> + } + + altMelodieA = \relative c'' { + << + { \meta } + %\altArt + %the actual tune + { + \repeat volta 2 { + r1 r1 + a4. g8 f4 d4 + d4 d4 c2 + r1 r1 + c'4. b8 a4 g4 + f4 e4 g2 + c4. b8 a4 g4 + } + \alternative { + { + e4 g4 fis2 ~ fis2 r2 + } + { + e4 g4 fis2 ~ fis2 r2 + } + } + } + >> + } + + altMelodieB = \relative c'' { + << + { + %-------------------------------% + %-------- Wißt ihr noch --------% + %-------------------------------% + \repeat volta 4 { + e4. e8 e4 e4 d4 d4 + e2 e2 + e4. e8 e4 e4 g4 g4 + fis2 fis1 + g4. g8 g4 g4 a4 a4 + g2 g2 + f4. f8 d4 d4 d4 d4 + e1 r2 + f4. f8 d4 d4 d4 d4 + e1 r2 + } + } + >> + } + + altMelodieC = \relative c'' { + << + { + %-------------------------------% + %--------- Und es sang ---------% + %-------------------------------% + \repeat unfold 2 { + e,4. e8 e4 e4 d4 d4 + e2 e2 + e4. e8 e4 e4 g4 g4 + fis2 fis1 + g4. g8 g4 g4 a4 a4 + g2 g2 + f4. f8 d4 d4 d4 d4 + e1 r2 + f4. f8 d4 d4 d4 d4 + } + \alternative { + { e1. ~ e1. } + { e1 r2 } + } + } + >> + } + + tenorMelodieA = \relative c'' { + << + { \meta } + %\tenorArt + %the actual tune + { + \repeat volta 2 { + r1 r1 + a4. a8 a4 a4 + a4 a4 e2 + r1 r1 + d'4. d8 d4 a4 + c4 a4 b2 + d4. d8 d4 a4 + } + \alternative { + { + c4 a4 a2 ~ a2 r2 + } + { + c4 a4 a2 ~ a2 r2 + } + } + } + >> + } + + tenorMelodieB = \relative c'' { + << + { + %-------------------------------% + %-------- Wißt ihr noch --------% + %-------------------------------% + \repeat volta 4 { + c4. c8 c4 c4 b4 b4 + a2 a2 + a4. a8 a4 a4 a4 a4 + a2 a1 + b4. b8 b4 b4 d4 d4 + b2 b2 + a4. a8 a4 a4 a4 f4 + a1 r2 + a4. a8 a4 a4 a4 f4 + a1 r2 + } + } + >> + } + + tenorMelodieC = \relative c'' { + << + { + %-------------------------------% + %--------- Und es sang ---------% + %-------------------------------% + \repeat unfold 2 { + c4. c8 c4 c4 b4 b4 + a2 a2 + a4. a8 a4 a4 a4 a4 + a2 a1 + b4. b8 b4 b4 d4 d4 + b2 b2 + a4. a8 a4 a4 a4 f4 + a1 r2 + a4. a8 a4 a4 a4 f4 + } + \alternative { + { a1. ~ a1. } + { a1 r2 } + } + } + >> + } + + bassMelodieA = \relative c { + << + { \meta } + %\bassArt + %the actual tune + \clef bass + { + \repeat volta 2 { + r1 r1 + f4. e8 d4 c4 + b4 b4 a2 + r1 r1 + a'4. g8 f4 e4 + d4 a'4 g2 + a4. g8 f4 e4 + } + \alternative { + { + g8 f8 e4 d2 ~ d2 r2 + } + { + g8 f8 e4 d2 ~ d2 r2 + } + } + } + >> + } + + bassMelodieB = \relative c { + << + { + %-------------------------------% + %-------- Wißt ihr noch --------% + %-------------------------------% + \clef bass + \repeat volta 4 { + a'4. a8 a4 a4 e4 e4 + a,2 a2 + g'4. g8 f4 f4 e4 e4 + d2 d1 + g4. g8 g4 g4 d4 d4 + g2 g2 + d4. d8 c4 c4 bes4 bes4 + a1 r2 + d4. d8 c4 c4 bes4 bes4 + a1 r2 + } + } + >> + } + + bassMelodieC = \relative c { + << + { + %-------------------------------% + %--------- Und es sang ---------% + %-------------------------------% + \clef bass + \repeat unfold 2 { + a'4. a8 a4 a4 e4 e4 + a,2 a2 + g'4. g8 f4 f4 e4 e4 + d2 d1 + g4. g8 g4 g4 d4 d4 + g2 g2 + d4. d8 c4 c4 bes4 bes4 + a1 r2 + d4. d8 c4 c4 bes4 bes4 + } + \alternative { + { a1. ~ a1. } + { a1 r2 } + } + } + >> + } diff --git a/hr/stch/golle/II/texte.ly b/hr/stch/golle/II/texte.ly new file mode 100644 index 0000000..df53289 --- /dev/null +++ b/hr/stch/golle/II/texte.ly @@ -0,0 +1,46 @@ +%some settings% vim: ai sw=2 lbr nu encoding=utf8 + +% Abkürzungen + + hodie = \lyricmode { + Ho -- die Chri -- stus na -- tus est! + } + +% Die Textaufteilungen + + Tenor = \lyrics { + \hodie _ \hodie _ \hodie + bo -- ren ist! + } + + Sopran = \lyrics { + Glo -- ri -- a in ex -- cel -- sis De -- o + et in ter -- ra pax hu -- mi -- ni -- bus + bo -- nae vo -- lun -- ta -- tis. + } + + sopranText = \lyrics { + \hodie \hodie \hodie + bo -- ren ist! + Wißt ihr noch, wie es ge -- sche -- hen? + Im -- mer wer -- den wir's er -- zäh -- len: + wie wir einst den Stern ge -- se -- hen + mit -- ten in der dun -- klen Nacht, + mit -- ten in der dun -- klen Nacht. + Und es sang aus Him -- mels -- hal -- len: + Ehr sei Gott! Auf Er -- den Frie -- den! + Al -- len Men -- schen Wohl -- ge -- fal -- len, + Got -- tes Gna -- de al -- lem Volk, + Got -- tes Gna -- de al -- lem Volk! + Im -- mer wer -- den wir's er -- zäh -- len, + wie das Wun -- der einst ge -- sche -- hen + und wie wir den Stern ge -- se -- hen + mit -- ten in der dun -- klen Nacht, + mit -- ten in der dun -- klen Nacht. + } + + tenorText = \lyrics { + \hodie \hodie \hodie + bo -- ren ist! + } + |