diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..779be4f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*/*.pdf +*/.vscode diff --git a/adeste_fideles/adeste_fideles_leadsheet.ly b/adeste_fideles/adeste_fideles_leadsheet.ly new file mode 100644 index 0000000..3c76b59 --- /dev/null +++ b/adeste_fideles/adeste_fideles_leadsheet.ly @@ -0,0 +1,12 @@ +\version "2.24.3" +\language deutsch +%\header { +% title = "GL 222" +%} + +\include "../../../lilypond_musician_score_paper.ly" +\include "adeste_fideles_vars.ly" + +\score{ + \Song.LeadsheetScore +} diff --git a/adeste_fideles/adeste_fideles_lz.ly b/adeste_fideles/adeste_fideles_lz.ly new file mode 100644 index 0000000..1679df9 --- /dev/null +++ b/adeste_fideles/adeste_fideles_lz.ly @@ -0,0 +1,18 @@ +\version "2.24.3" +\language deutsch +%\header { +% title = "GL 222" +%} + +\include "../../../lilypond_songsheet_paper.ly" +\include "adeste_fideles_vars.ly" + +\score{ + \Song.SongsheetScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/adeste_fideles/adeste_fideles_vars.ly b/adeste_fideles/adeste_fideles_vars.ly new file mode 100644 index 0000000..8ba74c8 --- /dev/null +++ b/adeste_fideles/adeste_fideles_vars.ly @@ -0,0 +1,84 @@ +\version "2.24.3" +\language deutsch +%\header { +% title = "GL 222" +%} + +Song.Voice.Chorus = { + g4 | g fis g a | g2 d4 + h | h a h c' | h2 a4 \breathe + d' | c' h a g | fis2 g4 + c' | h2 a4. g8 | g2 r4 +} +Song.Voice.Verse = { + g4 | 2 d4 g | a2 d | + h4 a h c' | h2 a4 \breathe + g4 | 2 fis4 e | fis (g) a h8 (g) fis2 (e4.) d8 2. r4 + d'2 c'4 h | c'2 h | + a4 h g a | fis (e) d \breathe +} + +Song.Lyrics.German.VerseI = \lyricmode { + \set stanza = "1." + Nun freut euch, ihr Chris -- ten, + sin -- get Ju -- bel -- lie -- der + und kom -- met, o kom -- met nach Bet -- le -- hem. + Chri -- stus der Hei -- land + stieg zu uns her -- nie -- der. +} +Song.Lyrics.German.VerseII = \lyricmode { + \set stanza = "2." + O se -- het die Hir -- ten + ei -- len von den Her -- den + und su -- chen das Kind nach des En -- gels Wort; + geh'n wir mit ih -- nen, + Frie -- de soll uns wer -- den +} +Song.Lyrics.German.VerseIII = \lyricmode { + \set stanza = "3." + Der Ab -- glanz des Va -- ters, + Herr der Her -- ren al -- le, + ist heu -- te er -- schie -- nen in un -- ser'm Fleisch: + Gott ist ge -- bo -- ren + als ein Kind im Stal -- le. +} +Song.Lyrics.German.Chorus = \lyricmode { + \set stanza = "Ref." + Kommt, las -- set uns an -- be -- ten, + kommt, las -- set uns an -- be -- ten, + kommt, las -- set uns an -- be -- ten + den Kö -- nig, den Herrn. +} + +Song.Chords = \chordmode { + s4 | d1 | s | d | h2:m a | h:m e:m | a g | d a | d1 + d | a | d | a | h:m | a | e | a + d | g2 d | h:m g | a2. +} + +Song.VocalScore = { + % Deutscher Text + << + \new Staff { + \key g \major + \time 2/2 + \partial 4 + \fixed c' { + \new Voice = "chorus" {\Song.Voice.Chorus \bar "||"} + \new Voice = "verse" {\Song.Voice.Verse \bar "|."} + }} + \new Lyrics << + \lyricsto "verse" {\Song.Lyrics.German.VerseI } + \lyricsto "chorus" {\Song.Lyrics.German.Chorus} + >> + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseII} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseIII} + >> +} + +Song.SongsheetScore = \transpose g d {\Song.VocalScore} + +Song.LeadsheetScore = << + \new ChordNames {\Song.Chords} + \Song.SongsheetScore +>> \ No newline at end of file diff --git a/adeste_fideles/assignments.tt b/adeste_fideles/assignments.tt new file mode 100644 index 0000000..2d77931 --- /dev/null +++ b/adeste_fideles/assignments.tt @@ -0,0 +1,7 @@ +[% + song_title = 'Adeste Fideles'; + scores = { + congregation = 'freie_lieder/adeste_fideles/adeste_fideles_lz.ly' + leadsheet = 'freie_lieder/adeste_fideles/adeste_fideles_leadsheet.ly' + } +-%] diff --git a/agnus_dei_xviii/agnus_dei_xviii_full.ly b/agnus_dei_xviii/agnus_dei_xviii_full.ly new file mode 100644 index 0000000..ba17b2e --- /dev/null +++ b/agnus_dei_xviii/agnus_dei_xviii_full.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "gregorian.ly" +\include "agnus_dei_xviii_vars.ly" + +\score { + \FullScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/agnus_dei_xviii/agnus_dei_xviii_lz.ly b/agnus_dei_xviii/agnus_dei_xviii_lz.ly new file mode 100644 index 0000000..2e110ab --- /dev/null +++ b/agnus_dei_xviii/agnus_dei_xviii_lz.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "gregorian.ly" +\include "agnus_dei_xviii_vars.ly" + +\score { + \VocalScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/agnus_dei_xviii/agnus_dei_xviii_schola.ly b/agnus_dei_xviii/agnus_dei_xviii_schola.ly new file mode 100644 index 0000000..f36b71e --- /dev/null +++ b/agnus_dei_xviii/agnus_dei_xviii_schola.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "gregorian.ly" +\include "agnus_dei_xviii_vars.ly" + +\score { + \VocalScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/agnus_dei_xviii/agnus_dei_xviii_vars.ly b/agnus_dei_xviii/agnus_dei_xviii_vars.ly new file mode 100644 index 0000000..1bc17eb --- /dev/null +++ b/agnus_dei_xviii/agnus_dei_xviii_vars.ly @@ -0,0 +1,71 @@ +\version "2.24.2" +\language deutsch + +\include "gregorian.ly" + +chant.meta = { + \key b \major + \time 1/4 + \repeat volta 3 { + s4*5 \divisioMinima + s4*9 \divisioMinima + \alternative { + \volta 1,2 {s4*7} + \volta 3 {s4*8} + } + } + \finalis +} +chant.cantus = \fixed c' { + \repeat volta 3 { + f4 f f (g) g4 + s g g g f g es f g + \alternative { + \volta 1,2 {f g a f g (f) f4} + \volta 3 {f g a f g (f) f4 s} + }} +} +chant.verba = \lyricmode { + \set stanza = "V" + A -- gnus De -- i, + \set stanza = "A" + qui tol -- lis pec -- ca -- ta mun -- di: + mi -- se -- re -- re no -- bis. + do -- na no -- bis pa -- cem. +} +chant.A = \fixed c' { + d2 c2 d4 + s4 d es2 s4 c2 d + d2 c2 d2 c4 + d2 c2 d2 c4 +} +chant.T = \relative { + b2 a2 g4 + s4 b c2 s4 g2 b + a2 f2( f4) g a + a2 f2( f4) g a +} +chant.B = \relative { + s4*5 + b,2 c s4 es2 b + d2 a2 b2 f4 + d'2 a2 b2 f4 +} + +VocalScore = \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\chant.meta \chant.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba} + >> + +FullScore = \new StaffGroup << + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\voiceOne \chant.meta \chant.cantus>> + \new GregorianTranscriptionVoice <<\voiceTwo\chant.meta \chant.A>> + >> + \new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba} + \new GregorianTranscriptionStaff << + \clef bass + \new GregorianTranscriptionVoice <<\voiceOne \chant.meta \chant.T>> + \new GregorianTranscriptionVoice <<\voiceTwo\chant.meta \chant.B>> + >> +>> diff --git a/agnus_dei_xviii/assignments.tt b/agnus_dei_xviii/assignments.tt new file mode 100644 index 0000000..09cf94b --- /dev/null +++ b/agnus_dei_xviii/assignments.tt @@ -0,0 +1,7 @@ +[% + scores = { + SATB = 'freie_lieder/agnus_dei_xviii/agnus_dei_xviii_schola.ly' + congregation = 'freie_lieder/agnus_dei_xviii/agnus_dei_xviii_lz.ly' + band = 'freie_lieder/agnus_dei_xviii/agnus_dei_xviii_full.ly' + }; +-%] diff --git a/agnus_dei_xviii_de/agnus_dei_xviii_de_full.ly b/agnus_dei_xviii_de/agnus_dei_xviii_de_full.ly new file mode 100644 index 0000000..e6ff776 --- /dev/null +++ b/agnus_dei_xviii_de/agnus_dei_xviii_de_full.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "gregorian.ly" +\include "agnus_dei_xviii_de_vars.ly" + +\score { + \FullScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/agnus_dei_xviii_de/agnus_dei_xviii_de_lz.ly b/agnus_dei_xviii_de/agnus_dei_xviii_de_lz.ly new file mode 100644 index 0000000..6fc3dff --- /dev/null +++ b/agnus_dei_xviii_de/agnus_dei_xviii_de_lz.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "gregorian.ly" +\include "agnus_dei_xviii_de_vars.ly" + +\score { + \VocalScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/agnus_dei_xviii_de/agnus_dei_xviii_de_schola.ly b/agnus_dei_xviii_de/agnus_dei_xviii_de_schola.ly new file mode 100644 index 0000000..8770972 --- /dev/null +++ b/agnus_dei_xviii_de/agnus_dei_xviii_de_schola.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "gregorian.ly" +\include "agnus_dei_xviii_de_vars.ly" + +\score { + \VocalScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/agnus_dei_xviii_de/agnus_dei_xviii_de_vars.ly b/agnus_dei_xviii_de/agnus_dei_xviii_de_vars.ly new file mode 100644 index 0000000..a56a8f1 --- /dev/null +++ b/agnus_dei_xviii_de/agnus_dei_xviii_de_vars.ly @@ -0,0 +1,71 @@ +\version "2.24.2" +\language deutsch + +\include "gregorian.ly" + +chant.meta = { + \key b \major + \time 1/4 + \repeat volta 3 { + s4*4 \divisioMinima + s4*10 \divisioMinima + \alternative { + \volta 1,2 {s4*7} + \volta 3 {s4*8} + } + } + \finalis +} +chant.cantus = \fixed c' { + \repeat volta 3 { + f4 f (g) g4 + s g g g g f g es f g + \alternative { + \volta 1,2 {f g a f g (f) f4} + \volta 3 {f g a f g (f) f4 s} + }} +} +chant.verba = \lyricmode { + \set stanza = "K" + Lamm Got -- tes, + \set stanza = "A" + Du nimmst hin -- weg die Sün -- de der Welt: + er -- bar -- me Dich un -- ser. + gib uns Dei -- nen Frie -- den. +} +chant.A = \fixed c' { + d4 c2 d4 + d2 es s c s4 b, + s c2 s4 d2 c4 + d2 c2 d2 c4 +} +chant.T = \relative { + b4 a2 g4 + b2 c s g s4 g + s f2( s4 f) g a + a2 f2( f4) g a +} +chant.B = \relative { + s2*2 + b,2 c s es s4 g, + s a2 s4 b2 f4 + d'2 a2 b2 f4 +} + +VocalScore = \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\chant.meta \chant.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba} + >> + +FullScore = \new StaffGroup << + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\voiceOne \chant.meta \chant.cantus>> + \new GregorianTranscriptionVoice <<\voiceTwo\chant.meta \chant.A>> + >> + \new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba} + \new GregorianTranscriptionStaff << + \clef bass + \new GregorianTranscriptionVoice <<\voiceOne \chant.meta \chant.T>> + \new GregorianTranscriptionVoice <<\voiceTwo\chant.meta \chant.B>> + >> +>> diff --git a/agnus_dei_xviii_de/assignments.tt b/agnus_dei_xviii_de/assignments.tt new file mode 100644 index 0000000..68077b1 --- /dev/null +++ b/agnus_dei_xviii_de/assignments.tt @@ -0,0 +1,7 @@ +[% + scores = { + SATB = 'freie_lieder/agnus_dei_xviii_de/agnus_dei_xviii_de_schola.ly' + band = 'freie_lieder/agnus_dei_xviii_de/agnus_dei_xviii_de_full.ly' + congregation = 'freie_lieder/agnus_dei_xviii_de/agnus_dei_xviii_de_lz.ly' + }; +-%] diff --git a/andachtsjodler/andachtsjodler_SATB.ly b/andachtsjodler/andachtsjodler_SATB.ly new file mode 100644 index 0000000..85d02c3 --- /dev/null +++ b/andachtsjodler/andachtsjodler_SATB.ly @@ -0,0 +1,20 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "andachtsjodler_vars.ly" + +\header { + title = "Andachtsjodler" +} +\score { +<< + \Song.SATBScore +>> + \layout { + \context { + \Staff + \RemoveAllEmptyStaves + } + } +} diff --git a/andachtsjodler/andachtsjodler_lz.ly b/andachtsjodler/andachtsjodler_lz.ly new file mode 100644 index 0000000..8f3c7ee --- /dev/null +++ b/andachtsjodler/andachtsjodler_lz.ly @@ -0,0 +1,15 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "andachtsjodler_vars.ly" + +\score { + \Song.SATBScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/andachtsjodler/andachtsjodler_vars.ly b/andachtsjodler/andachtsjodler_vars.ly new file mode 100644 index 0000000..55a2b26 --- /dev/null +++ b/andachtsjodler/andachtsjodler_vars.ly @@ -0,0 +1,48 @@ +\version "2.24.3" +\language deutsch + +Song.Music.Meta = { + \key d \major + \time 2/4 + s2*8 \bar "|." +} + +Song.Melody.S = \fixed c' { + fis4 8 a | e2 | g4 8 h | fis2 | a4 4 | d'4.\fermata cis'16\fermata h\fermata | a8 g e g | fis2 +} + +Song.Music.A = \fixed c' { + d4 8 fis | cis2 | e4 8 g | d2 | fis4 4 | h4. a16 g | fis8 e cis e | d2 +} +Song.Music.T = \fixed c { + a4 8 d' | a2 | 4 h8 d' | a2 | d'4 4 | g'4. e'16 d' | cis'8 h a h | a2 +} +Song.Music.B = \fixed c { + d4 8 8 | a2 | a4 g8 8 | d2 | 4 4 | g,4.\fermata 16\fermata 16\fermata a,8 8 8 8 | d2 +} + +Song.Lyrics = \lyricmode { + Djo, djo -- i -- ri, + djo, djo -- i -- ri, + djo, djo -- ri -- ri -- di + jo -- e djo -- i -- ri. +} + +Song.SATBScore = << + \new ChoirStaff << + \new Staff \with {\consists Merge_rests_engraver } << + \Song.Music.Meta + \new Voice = "melody" <<\voiceOne {\Song.Melody.S}>> + \new Voice <<\voiceTwo\Song.Music.A>> + >> + \new Lyrics \lyricsto "melody" {\Song.Lyrics} + \new Staff \with {\consists Merge_rests_engraver } << + \clef bass + << + \Song.Music.Meta + \new Voice <<\voiceOne \Song.Music.T>> + \new Voice <<\voiceTwo \Song.Music.B>> + >> + >> + >> +>> diff --git a/andachtsjodler/assignments.tt b/andachtsjodler/assignments.tt new file mode 100644 index 0000000..ec3824f --- /dev/null +++ b/andachtsjodler/assignments.tt @@ -0,0 +1,7 @@ +[% + song_title = 'Andachtsjodler'; + scores = { + congregation = "freie_lieder/andachtsjodler/andachtsjodler_lz.ly" + SATB = "freie_lieder/andachtsjodler/andachtsjodler_SATB.ly" + }; +%] diff --git a/christus_vincit/assignments.tt b/christus_vincit/assignments.tt new file mode 100644 index 0000000..32e5cf1 --- /dev/null +++ b/christus_vincit/assignments.tt @@ -0,0 +1,7 @@ +[% + song_title = "Christus Vincit"; + scores = { + leadsheet = "freie_lieder/christus_vincit/christus_vincit_leadsheet.ly" + congregation = "freie_lieder/christus_vincit/christus_vincit_lz.ly" + } +%] diff --git a/christus_vincit/christus_vincit_leadsheet.ly b/christus_vincit/christus_vincit_leadsheet.ly new file mode 100644 index 0000000..e4c87e6 --- /dev/null +++ b/christus_vincit/christus_vincit_leadsheet.ly @@ -0,0 +1,20 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "christus_vincit_vars.ly" + +\score { + << + \new ChordNames { + \Song.Chords + } + {\Song.FullScore} + >> + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/christus_vincit/christus_vincit_lz.ly b/christus_vincit/christus_vincit_lz.ly new file mode 100644 index 0000000..eec1a38 --- /dev/null +++ b/christus_vincit/christus_vincit_lz.ly @@ -0,0 +1,15 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "christus_vincit_vars.ly" + +\score { + {\Song.FullScore} + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/christus_vincit/christus_vincit_vars.ly b/christus_vincit/christus_vincit_vars.ly new file mode 100644 index 0000000..f283245 --- /dev/null +++ b/christus_vincit/christus_vincit_vars.ly @@ -0,0 +1,30 @@ +\version "2.24.3" +\language deutsch + +Song.Melody = \fixed c' { + \autoBeamOff + a4 a c' c' | + f f a a | + d' g c' f8[ b] | a4( g8.) f16 2 + \bar "|." +} + +Song.Chords = \chordmode { + f2 c d:m a:m b4 c f d:m f c f2 +} + +Song.Lyrics = \lyricmode { + \set stanza = "V/A" + Chris -- tus vin -- cit. Chris -- tus reg -- nat. Chris -- tus, Chris -- tus im -- pe -- rat. +} + +Song.FullScore = { + << + \new Staff { + \key f \major + \time 2/2 + \new Voice = "melody" {\Song.Melody} + } + \new Lyrics \lyricsto "melody" {\Song.Lyrics} + >> +} diff --git a/der_engel_des_herrn/assignments.tt b/der_engel_des_herrn/assignments.tt new file mode 100644 index 0000000..69b71ac --- /dev/null +++ b/der_engel_des_herrn/assignments.tt @@ -0,0 +1,8 @@ +[% + title = 'Der Engel des Herrn' + scores = { + band = 'freie_lieder/der_engel_des_herrn/der_engel_des_herrn_leadsheet.ly' + SATB = 'freie_lieder/der_engel_des_herrn/der_engel_des_herrn_SATB.ly' + congregation = 'freie_lieder/der_engel_des_herrn/der_engel_des_herrn_lz.ly' + } +-%] diff --git a/der_engel_des_herrn/der_engel_des_herrn_SATB.ly b/der_engel_des_herrn/der_engel_des_herrn_SATB.ly new file mode 100644 index 0000000..f6d2058 --- /dev/null +++ b/der_engel_des_herrn/der_engel_des_herrn_SATB.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch +% GL 218 + +\include "../../../lilypond_musician_score_paper.ly" +\include "der_engel_des_herrn_vars.ly" + +\score{ + \Song.SATBScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/der_engel_des_herrn/der_engel_des_herrn_leadsheet.ly b/der_engel_des_herrn/der_engel_des_herrn_leadsheet.ly new file mode 100644 index 0000000..0070c2c --- /dev/null +++ b/der_engel_des_herrn/der_engel_des_herrn_leadsheet.ly @@ -0,0 +1,10 @@ +\version "2.24.2" +\language deutsch +% GL 218 + +\include "../../../lilypond_musician_score_paper.ly" +\include "der_engel_des_herrn_vars.ly" + +\score{ + \Song.LeadsheetScore +} diff --git a/der_engel_des_herrn/der_engel_des_herrn_lz.ly b/der_engel_des_herrn/der_engel_des_herrn_lz.ly new file mode 100644 index 0000000..eda75e1 --- /dev/null +++ b/der_engel_des_herrn/der_engel_des_herrn_lz.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch +% GL 218 + +\include "../../../lilypond_songsheet_paper.ly" +\include "der_engel_des_herrn_vars.ly" + +\score{ + \Song.MelodyScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/der_engel_des_herrn/der_engel_des_herrn_vars.ly b/der_engel_des_herrn/der_engel_des_herrn_vars.ly new file mode 100644 index 0000000..d44e793 --- /dev/null +++ b/der_engel_des_herrn/der_engel_des_herrn_vars.ly @@ -0,0 +1,105 @@ +\version "2.24.2" +\language deutsch +% GL 218 + +Song.meta = { + \key es \major + \time 3/4 + \partial 4 + \phrasingSlurDashed + s4 s2.*3 s2 \breathe + s4 s2.*3 s2 \breathe + s4 s2.*3 s2 \breathe + s4 s2.*3 s2 \bar "|." +} +Song.S = \relative c' { + g'4 | g \(f\) g | b2 c8 (b) | as2 b8 \(as\) | g2 + 4 | g (f) g | b2 c8 (b) | as2 b8 (as) | g2 + b4 | b \(as\) g | f2 g8 (b) | 4 (as) g | f2 + b4 | g2 c4 | b4. (c8) b (as) | g2 f4 | es2 +} +Song.lyrics.stropheEins = \lyricmode { + \set stanza = "1." + Der En -- gel des Herrn aus Got -- tes _ Macht + hat \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a} die Bot -- schaft bracht: + Sie soll _ die Mut -- ter Got -- tes sein + und blei -- ben ei -- ne Jung -- frau rein. +} +Song.lyrics.stropheZwei = \lyricmode { + \set stanza = "2." + \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- _ \markup{\smallCaps a} sprach: „Ich bin ganz _ rein + und will die Magd des Her -- ren sein. + Dein Wil -- le, o Herr, ge -- scheh an mir, + mein Herz, o Gott, das schenk ich Dir.“ +} +Song.lyrics.stropheDrei = \lyricmode { + \set stanza = "3." + Das hei -- li -- ge Wort, das Fleisch wor -- den ist + und wird ge -- nannt Herr \markup{\smallCaps Je} -- \markup{\smallCaps sus} Christ. + Dein bit -- te -- res Leid, o gro -- ßer Gott, + das stär -- ke mich in mei -- nem Tod. +} +Song.lyrics.stropheVier = \lyricmode { + \set stanza = "4." + Herr \markup{\smallCaps Je} -- _ \markup{\smallCaps sus} Christ, hab noch ei -- ne Bitt: + Ver -- lass die ar -- men See -- len nit + und füh -- _ re sie aus ih -- rer Pein + zu Dir in Dei -- nen Him -- mel ein. +} + +Song.A = \relative c' { + \repeat unfold 2 { + es4 | 2.~ | 2. | 4 c d | es2 + } + g4 g( f) es | d2 es4 | f2 es4 | d2 + 4 | es d es | es d f | es c d | b2 +} +Song.T = \relative { + \repeat unfold 2 { + b4 | b as b | g es as8 g | f2. | es2 + } + b'4 | 2.~ | b~ | b~ | 2 + f4 | es2 as4 | b2 c4 | b2 as4 | g2 +} +Song.B = \relative { + \repeat unfold 2 { + es4 | 2.~ | 2. | f2 b,4 | es2 + } + es4 | 2 g4 | b b, es | d2 es4 | b2 + 4 c b as | g2 as4 | b2 4 | es2 +} + +Song.Chords = \chordmode { + s4 | c2. | s | g | c | + c | s | g | c | + c | g | c | g | + a2:m d4:m | c2. | s2 g4 | c2 +} +Song.MelodyScore = \new Staff << + \new Voice = "melody" <<\Song.meta \Song.S>> + \new Lyrics \lyricsto melody {\Song.lyrics.stropheEins} + \new Lyrics \lyricsto melody {\Song.lyrics.stropheZwei} + \new Lyrics \lyricsto melody {\Song.lyrics.stropheDrei} + \new Lyrics \lyricsto melody {\Song.lyrics.stropheVier} + >> + + Song.SATBScore = \new ChoirStaff << + \new Staff << + \new Voice = "melody" <<\voiceOne \Song.meta \Song.S>> + \new Voice <<\voiceTwo \Song.meta \Song.A>> + >> + \new Lyrics \lyricsto melody {\Song.lyrics.stropheEins} + \new Lyrics \lyricsto melody {\Song.lyrics.stropheZwei} + \new Lyrics \lyricsto melody {\Song.lyrics.stropheDrei} + \new Lyrics \lyricsto melody {\Song.lyrics.stropheVier} + \new Staff << + \clef bass + \new Voice <<\voiceOne \Song.meta \Song.T>> + \new Voice <<\voiceTwo \Song.meta \Song.B>> + >> + >> + + Song.LeadsheetScore = << + \new ChordNames {\Song.Chords} + \transpose g e \Song.MelodyScore + >> \ No newline at end of file diff --git a/erbarme_dich_meiner_GL_639_1/assignments.tt b/erbarme_dich_meiner_GL_639_1/assignments.tt new file mode 100644 index 0000000..2e2e48d --- /dev/null +++ b/erbarme_dich_meiner_GL_639_1/assignments.tt @@ -0,0 +1,3 @@ +[% + scores.congregation = 'freie_lieder/erbarme_dich_meiner_GL_639_1/erbarme_dich_meiner.ly'; +-%] diff --git a/erbarme_dich_meiner_GL_639_1/erbarme_dich_meiner.ly b/erbarme_dich_meiner_GL_639_1/erbarme_dich_meiner.ly new file mode 100644 index 0000000..9de00cb --- /dev/null +++ b/erbarme_dich_meiner_GL_639_1/erbarme_dich_meiner.ly @@ -0,0 +1,30 @@ +\version "2.22.2" +\language deutsch + +%GL 639 1 +\include "../../../lilypond_songsheet_paper.ly" +Song.Melody = \relative { + \key a \minor + \time 4/2 + \partial 2 + e'2 | a2 4 4 g2 e4 g | a2 \breathe + h c h4 a | g2( f) e \bar "|." +} + +Song.Lyrics = \lyricmode { + \set stanza = "V/A" + Er -- bar -- me Dich mei -- ner, o Gott, er -- bar -- me Dich mei -- ner. +} + +\score { + << + \new Voice = "melody" {\Song.Melody} + \new Lyrics \lyricsto "melody" {\Song.Lyrics} + >> + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/hallaluja_174_3/assignments.tt b/hallaluja_174_3/assignments.tt new file mode 100644 index 0000000..879ab2e --- /dev/null +++ b/hallaluja_174_3/assignments.tt @@ -0,0 +1,3 @@ +[% + scores.congregation = 'freie_lieder/hallaluja_174_3/hallaluja_174_3.ly'; +-%] diff --git a/hallaluja_174_3/halleluja_174_3.ly b/hallaluja_174_3/halleluja_174_3.ly new file mode 100644 index 0000000..7f49546 --- /dev/null +++ b/hallaluja_174_3/halleluja_174_3.ly @@ -0,0 +1,32 @@ +\version "2.22.2" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +Song.Melody = \relative { + \key c \major + \time 9/2 + a'4 g a2 d, \breathe + f4 g a (c) a g f (g) e2 d \bar "|." +} + +Song.Lyrics = \lyricmode { + \set stanza = "V/A" + \repeat unfold 2 {Hal -- le -- lu -- ja,} Hal -- le -- lu -- ja. +} + +\score { + << + \new Voice = "melody" {\Song.Melody} + \new Lyrics \lyricsto "melody" {\Song.Lyrics} + >> + \layout { + \context { + \Score + \omit BarNumber + } + \context{ + \Staff + \remove "Time_signature_engraver" + } + } +} diff --git a/hallaluja_174_4/assignments.tt b/hallaluja_174_4/assignments.tt new file mode 100644 index 0000000..605f3fd --- /dev/null +++ b/hallaluja_174_4/assignments.tt @@ -0,0 +1,3 @@ +[% + scores.congregation = 'freie_lieder/hallaluja_174_4/hallaluja_174_4.ly'; +-%] diff --git a/hallaluja_174_4/halleluja_174_4_SATB.ly b/hallaluja_174_4/halleluja_174_4_SATB.ly new file mode 100644 index 0000000..0603284 --- /dev/null +++ b/hallaluja_174_4/halleluja_174_4_SATB.ly @@ -0,0 +1,19 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "halleluja_174_4_vars.ly" + +\header { + title = "GL 174, 4" +% composer = "M: aus \"Vom Himmel hoch, o Engel, kommt!\", Köln 1623" +% arranger = "S: Leopold Fajtak 2023" +% poet = "T: Liturgie" + copyright = \markup\column{"Text: Liturgie; Melodie aus \"Vom Himmel hoch, o Engel, kommt!\", Köln 1623; " + "Satz: Leopold Fajtak; Lizensiert von Leopold Fajtak unter CC BY-NC-ND 4.0."} +} +\score { + \Song.SATBScore + \layout { + } +} diff --git a/hallaluja_174_4/halleluja_174_4_lz.ly b/hallaluja_174_4/halleluja_174_4_lz.ly new file mode 100644 index 0000000..377c086 --- /dev/null +++ b/hallaluja_174_4/halleluja_174_4_lz.ly @@ -0,0 +1,14 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "halleluja_174_4_vars.ly" +\score { + \Song.MelodyScore + \layout { + \context{ + \Staff + \remove BarNumber + } + } +} diff --git a/hallaluja_174_4/halleluja_174_4_vars.ly b/hallaluja_174_4/halleluja_174_4_vars.ly new file mode 100644 index 0000000..896fb0d --- /dev/null +++ b/hallaluja_174_4/halleluja_174_4_vars.ly @@ -0,0 +1,54 @@ +\version "2.24.3" +\language deutsch + +Song.Meta = { + \key f \major + \time 3/8 + \partial 8 + \autoBeamOff + s8 | s4.*3 | s4 \breathe + s8 | s4.*3 | s4 \bar "|." +} +Song.Melody = \relative c' { + \autoBeamOff + c'8 | 4 b8 | a4 d8 | c[ b] a | g4 + c8 | g[ a] b | c4 f,8 | 4 e8 f4 +} + +Song.A = \fixed c' { + f8 | f[ g] d | c4 f8 | 4 8 | e4 + c8 | d4 8 | f4 c8 | d4 c8 | 4 +} + +Song.T = \fixed c { + a8 | a[ b] f | f4 8 | 4 d8 | e4 + f8 | 4 8 | a4 8 | g4 8 | a4 +} +Song.B = \relative c { + c8 | f,4 8 | 4 b8 | a4 b8 | c4 + a8 | b4 8 | a4 8 | b4 c8 | f,4 +} + +Song.Lyrics = \lyricmode { + \set stanza = "V/A" + \repeat unfold 3 {Hal -- le -- lu -- ja,} Hal -- le -- lu -- ja. +} + +Song.MelodyScore = << + \new Voice = "melody" <<\Song.Meta \Song.Melody>> + \new Lyrics \lyricsto "melody" {\Song.Lyrics} +>> + +Song.SATBScore = \new ChoirStaff << + \new Staff <<\Song.Meta + \new Voice = "melody" <<\voiceOne \Song.Melody>> + \new Voice = "Alt" <<\voiceTwo \Song.A>> + >> + \new Lyrics \lyricsto "melody" {\Song.Lyrics} + \new Staff << + \clef bass + \Song.Meta + \new Voice = "Tenor" <<\voiceOne \Song.T>> + \new Voice = "Bass" <<\voiceTwo \Song.B>> + >> +>> \ No newline at end of file diff --git a/halleluja_174_6/assignments.tt b/halleluja_174_6/assignments.tt new file mode 100644 index 0000000..f41d807 --- /dev/null +++ b/halleluja_174_6/assignments.tt @@ -0,0 +1,3 @@ +[% + scores.congregation = 'freie_lieder/hallaluja_174_6/hallaluja_174_6.ly'; +-%] diff --git a/halleluja_174_6/halleluja_174_6.ly b/halleluja_174_6/halleluja_174_6.ly new file mode 100644 index 0000000..7a335ce --- /dev/null +++ b/halleluja_174_6/halleluja_174_6.ly @@ -0,0 +1,30 @@ +\version "2.22.2" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +Song.Melody = \relative { + \key g \major + \time 3/4 + \partial 4 + d'4 | h'2 a4 | g2 a8 h | c2 (h4) | a2 \breathe + d,4 | d'2 c4 | h2 \breathe c4 | d (c) h | a2 \breathe + 8 h | c4 (h a) | g2 \bar "|." +} + +Song.Lyrics = \lyricmode { + \set stanza = "V/A" + \repeat unfold 4 {Hal -- le -- lu -- ja,} Hal -- le -- lu -- ja. +} + +\score { + << + \new Voice = "melody" {\Song.Melody} + \new Lyrics \lyricsto "melody" {\Song.Lyrics} + >> + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/halleluja_175_5/assignments.tt b/halleluja_175_5/assignments.tt new file mode 100644 index 0000000..b6ac756 --- /dev/null +++ b/halleluja_175_5/assignments.tt @@ -0,0 +1,3 @@ +[% + scores.congregation = 'freie_lieder/hallaluja_175_5/hallaluja_175_5.ly'; +-%] diff --git a/halleluja_175_5/halleluja_175_5.ly b/halleluja_175_5/halleluja_175_5.ly new file mode 100644 index 0000000..36ad32c --- /dev/null +++ b/halleluja_175_5/halleluja_175_5.ly @@ -0,0 +1,39 @@ +\version "2.22.2" +\language deutsch +\header { +% title = "GL 175 7" +} +\include "../../../lilypond_songsheet_paper.ly" +\include "gregorian.ly" +chant = \fixed c' { + \key g \major + \time 1/4 + \override Lyrics.LyricText.X-extent = #'(0 . 3) + \clef "treble" + fis4 g a8 (h) a4\divisioMinima + a8 (g) e (g) fis (e) d4 e8 (c) \tuplet 3/2 {e8 (g fis)} d4 d\finalis +} +verba = \lyricmode { + Al -- le --lu -- ja, al -- le -- lu -- ja, al -- le -- lu -- ja. +} +\score { + \new Staff << + \new Voice = "melody" \chant + \new Lyrics = "one" \lyricsto melody \verba + >> + \layout { + \context { + \Staff + \remove "Time_signature_engraver" + \override BarLine.X-extent = #'(-1 . 1) + \hide Stem + \hide Beam + \hide BarLine + \hide TupletNumber + } + \context { + \Score + \omit BarNumber + } + } +} diff --git a/heilges_kreuz_sei_hochverehret/assignments.tt b/heilges_kreuz_sei_hochverehret/assignments.tt new file mode 100644 index 0000000..56ca3be --- /dev/null +++ b/heilges_kreuz_sei_hochverehret/assignments.tt @@ -0,0 +1,10 @@ +[% song_title = "Heil'ges Kreuz sei hochverehret"; + credits = { + lyrics = 'Steyr 1854, Wien 1857' + melody = 'Graz 1855, Salzburg 1878' + }; + scores = { + leadsheet = 'freie_lieder/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_leadsheet.ly' + congregation = 'freie_lieder/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_lz.ly' + }; +-%] diff --git a/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_leadsheet.ly b/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_leadsheet.ly new file mode 100644 index 0000000..5ec787d --- /dev/null +++ b/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_leadsheet.ly @@ -0,0 +1,10 @@ +\version "2.24.2" +\language deutsch +% GL 823 + +\include "../../../lilypond_musician_score_paper.ly" +\include "heilges_kreuz_sei_hochverehret_vars.ly" + +\score{ + \Song.LeadsheetScore +} diff --git a/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_lz.ly b/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_lz.ly new file mode 100644 index 0000000..70a1dae --- /dev/null +++ b/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_lz.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch +% GL 218 + +\include "../../../lilypond_songsheet_paper.ly" +\include "heilges_kreuz_sei_hochverehret_vars.ly" + +\score{ + \Song.MelodyScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_vars.ly b/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_vars.ly new file mode 100644 index 0000000..1de714e --- /dev/null +++ b/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_vars.ly @@ -0,0 +1,86 @@ +\version "2.24.2" +\language deutsch +% GL 218 + +Song.melody.moduleI = \fixed c' { + \autoBeamOff + b4 a8[ g] 4 f | g f8[ es] 4 d \breathe + f4 f g c' | b a +} +Song.melody.verse = \fixed c' { + \key b \major + \time 4/4 + \autoBeamOff + \repeat unfold 2 { + \Song.melody.moduleI b4 r + } +} +Song.melody.chorus = \fixed c' { + \autoBeamOff + d'4 b b8[ c'] d'4 | c' b a8[ b] c'4 \breathe + b a g c'8[ b ] | a4 g f r + \Song.melody.moduleI b2 +} +Song.lyrics.verseI = \lyricmode { + \set stanza = "1." + Heil' -- ges Kreuz, sei hoch ver -- eh -- ret, + Baum an dem der Hei -- land hing, + wo sich sei -- ne Lieb' be -- wäh -- ret, + Lieb', die bis zum To -- de ging. +} +Song.lyrics.chorus = \lyricmode { + \set stanza = "1.-4." + Sei mit Mund und Herz ver -- eh -- ret, + Kreuz -- stamm Chris -- ti, mei -- nes Herrn. + Einst -- mals seh'n wir Dich ver -- klä -- ret, + strah -- lend gleich dem Mor -- gen -- stern. +} +Song.lyrics.verseII = \lyricmode { + \set stanza = "2." + Heil' -- ges Kreuz, sei uns' -- re Fah -- ne, + die uns führt durch Kampf und Not, + die uns hal -- te, die uns mah -- ne, + treu zu sein bis in den Tod. +} +Song.lyrics.verseIII = \lyricmode { + \set stanza = "3." + Kreuz, du Denk -- mal sei -- ner Lei -- den, + präg' uns sei -- ne Lie -- be ein, + dass wir stets die Sün -- de mei -- den, + stets ge -- denk -- ken sei -- ner Pein! +} +Song.lyrics.verseIV = \lyricmode { + \set stanza = "4." + Heil' -- ges Kreuz, du Sie -- ges -- zei -- chen, + se -- lig, wer auf dich ver -- traut; + si -- cher wird sein Ziel er -- rei -- chen, + wer auf dich im Le -- ben schaut. +} + +Song.Chords.moduleI = \chordmode { + a2 d h:m d4 a + a2 h:m a4 e a2 +} +Song.Chords.full = \chordmode { + \repeat unfold 2 {\Song.Chords.moduleI} + a2 d h:7 e + fis:m h:7 e s + \Song.Chords.moduleI +} +Song.MelodyScore = \new Staff << + \transpose b a {\new Voice = "melodyVerse" {\Song.melody.verse} + \new Voice = "melodyChorus" {\Song.melody.chorus} \bar "|." + } + \new Lyrics << + \lyricsto melodyVerse {\Song.lyrics.verseI} + \lyricsto melodyChorus {\Song.lyrics.chorus} + >> +% \new Lyrics \lyricsto melodyVerse {\Song.lyrics.verseII} +% \new Lyrics \lyricsto melodyVerse {\Song.lyrics.verseIII} + \new Lyrics \lyricsto melodyVerse {\Song.lyrics.verseIV} + >> + + Song.LeadsheetScore = << + \new ChordNames {\Song.Chords.full} + \Song.MelodyScore + >> diff --git a/hy_bevor_des_tages/assignments.tt b/hy_bevor_des_tages/assignments.tt new file mode 100644 index 0000000..8fc4ee1 --- /dev/null +++ b/hy_bevor_des_tages/assignments.tt @@ -0,0 +1,6 @@ +[% + scores = { + congregation = 'freie_lieder/hy_bevor_des_tages/hy_bevor_des_tages_lz.ly' + leadsheet = 'freie_lieder/hy_bevor_des_tages/hy_bevor_des_tages_full.ly' + }; +-%] diff --git a/hy_bevor_des_tages/hy_bevor_des_tages_full.ly b/hy_bevor_des_tages/hy_bevor_des_tages_full.ly new file mode 100644 index 0000000..894c612 --- /dev/null +++ b/hy_bevor_des_tages/hy_bevor_des_tages_full.ly @@ -0,0 +1,8 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "hy_bevor_des_tages_vars.ly" +\include "gregorian.ly" + +\score { \FullScore } \ No newline at end of file diff --git a/hy_bevor_des_tages/hy_bevor_des_tages_lz.ly b/hy_bevor_des_tages/hy_bevor_des_tages_lz.ly new file mode 100644 index 0000000..440ba80 --- /dev/null +++ b/hy_bevor_des_tages/hy_bevor_des_tages_lz.ly @@ -0,0 +1,10 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "hy_bevor_des_tages_vars.ly" +\include "gregorian.ly" + +\score { + \VocalScore +} diff --git a/hy_bevor_des_tages/hy_bevor_des_tages_vars.ly b/hy_bevor_des_tages/hy_bevor_des_tages_vars.ly new file mode 100644 index 0000000..fb66e3b --- /dev/null +++ b/hy_bevor_des_tages/hy_bevor_des_tages_vars.ly @@ -0,0 +1,46 @@ +\version "2.24.3" +\language deutsch + +\include "gregorian.ly" +chant.meta = { + \key c \major + \set Score.timing = ##f + s4*8 \divisioMinima + s4*8 \divisioMaior + s4*10 \divisioMinima + s4*8 \finalis +} +chant.cantus = \relative c'' { + g4 h a c c c h a + a c c c g a g f + a a g c h a g a(h a) + a a g f g a g g +} +verba.I = \lyricmode { + Be -- vor des Ta -- ges Licht ver -- geht, + o Herr der Welt, hör dies Ge -- bet: + Be -- hü -- te uns in die -- ser Nacht + durch Dei -- ne gro -- ße Güt und Macht. +} +verba.II = \lyricmode { + Hüllt Schlaf die mü -- den Glie -- der ein, + lass uns in Dir ge -- bor -- gen sein + und mach am Mor -- gen uns be -- reit + zum Lo -- be Dei -- ner Herr -- lich -- keit. +} +verba.III = \lyricmode { + Dank Dir, o Va -- ter, reich an Macht, + der ü -- ber uns voll Gü -- te wacht + und mit dem Sohn und Heil -- 'gen Geist + des Le -- bens Fül -- le uns ver -- heißt. +} + +VocalScore = \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\chant.meta \chant.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melody {\verba.I} + \new GregorianTranscriptionLyrics \lyricsto melody {\verba.II} + \new GregorianTranscriptionLyrics \lyricsto melody {\verba.III} + >> +FullScore = << + {\VocalScore} +>> diff --git a/ihr_freunde_gottes_allzugleich/assignments.tt b/ihr_freunde_gottes_allzugleich/assignments.tt new file mode 100644 index 0000000..f86caa1 --- /dev/null +++ b/ihr_freunde_gottes_allzugleich/assignments.tt @@ -0,0 +1,3 @@ +[% + scores.congregation = 'freie_lieder/ihr_freunde_gottes_allzugleich/ihr_freunde_gottes_allzugleich.ly'; +-%] diff --git a/ihr_freunde_gottes_allzugleich/ihr_freunde_gottes_allzugleich.ly b/ihr_freunde_gottes_allzugleich/ihr_freunde_gottes_allzugleich.ly new file mode 100644 index 0000000..beae146 --- /dev/null +++ b/ihr_freunde_gottes_allzugleich/ihr_freunde_gottes_allzugleich.ly @@ -0,0 +1,75 @@ +\version "2.22.1" +\language deutsch +%GL 531 + +\include "../../../lilypond_songsheet_paper.ly" +melody.St = \fixed c' { + \key es \major + \time 4/4 + \partial 4 + \repeat volta 2 { + b, 4| \time 4/4 es es f f | \time 6/4 g g es2 r4 as | + \time 4/4 g f es es | \time 6/4 c d es2 r4} +} +melody.KV = \fixed c' { + es | \time 4/4 g f g as | b2 c' | b r4 b | c' b g as | b2 c' | b r4 + b as g f b | g2 f | es r4 + \bar "|." +} + +stropheI.I = \lyricmode { + \set stanza = "1." + Ihr Freun -- de Got -- tes all -- zu -- gleich, + ver -- herr -- licht hoch im Him -- mel -- reich, +} +stropheI.II = \lyricmode { + er -- fleht am Thro -- ne al -- le zeit + uns Gna -- de und Barm -- her -- zig -- keit! +} +KV = \lyricmode { + Helft uns in die -- dem Er -- den -- tal, + dass wir durch Got -- tes Gnad und Wahl + zum Him -- mel kom -- men all -- zu -- mal! +} +stropheV.I = \lyricmode { + \set stanza = "5." + O Schar der Jung -- fraun, licht und rein, + die ihr ge -- weiht dme Herrn al -- lein, +} +stropheV.II = \lyricmode { + ihr heil-- gen Frau -- en tu -- gend -- reich, + ihr Freun -- de Got -- tes all -- zu -- gleich +} +stropheVI.I = \lyricmode { + \set stanza = "6." + Wir bit -- ten euch durch Chris -- ti Blut, + die ihr nun weilt beim höch -- sten Gut, +} +stropheVI.II = \lyricmode { + tragt vor die Not der Chris -- ten -- heit + der hei -- lig -- sten Drei -- fal -- tig -- keit! +} + +\score{ + << + \new Staff { + \new Voice = "St" {\melody.St} + \new Voice = "KV" {\melody.KV} + } + \new Lyrics << + \lyricsto "St" {\stropheI.I} + \lyricsto "KV" {\KV} + >> + \new Lyrics \lyricsto "St" {\stropheI.II} + \new Lyrics \lyricsto "St" {\stropheV.I} + \new Lyrics \lyricsto "St" {\stropheV.II} + \new Lyrics \lyricsto "St" {\stropheVI.I} + \new Lyrics \lyricsto "St" {\stropheVI.II} + >> + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/kyrie_xvi/assignments.tt b/kyrie_xvi/assignments.tt new file mode 100644 index 0000000..bfa6945 --- /dev/null +++ b/kyrie_xvi/assignments.tt @@ -0,0 +1,7 @@ +[% + scores = { + gregorian = 'gregorio_scores/kyrie/kyrie_xvi.gabc' + }; + credits.TM = 'Vat. XVI'; +-%] +[%# Accompanyment available. Arragngement Berthold Hummel%] diff --git a/kyrie_xvi/kyrie_xvi_full.ly b/kyrie_xvi/kyrie_xvi_full.ly new file mode 100644 index 0000000..0e5682b --- /dev/null +++ b/kyrie_xvi/kyrie_xvi_full.ly @@ -0,0 +1,15 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "kyrie_xvi_vars.ly" + +\score { + \FullScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/kyrie_xvi/kyrie_xvi_lz.ly b/kyrie_xvi/kyrie_xvi_lz.ly new file mode 100644 index 0000000..6716669 --- /dev/null +++ b/kyrie_xvi/kyrie_xvi_lz.ly @@ -0,0 +1,15 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "kyrie_xvi_vars.ly" + +\score { + \VocalScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/kyrie_xvi/kyrie_xvi_schola.ly b/kyrie_xvi/kyrie_xvi_schola.ly new file mode 100644 index 0000000..c4933c1 --- /dev/null +++ b/kyrie_xvi/kyrie_xvi_schola.ly @@ -0,0 +1,15 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "kyrie_xvi_vars.ly" + +\score { + \VocalScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/kyrie_xvi/kyrie_xvi_vars.ly b/kyrie_xvi/kyrie_xvi_vars.ly new file mode 100644 index 0000000..520471e --- /dev/null +++ b/kyrie_xvi/kyrie_xvi_vars.ly @@ -0,0 +1,61 @@ +\version "2.24.2" +\language deutsch + +\include "gregorian.ly" + +chant.meta = { + \key f \major + \repeat volta 2 {s4*9} + \repeat volta 2 {s4*7} + \repeat volta 2 {s4*10} \finalis +} +chant.cantus = \fixed c' { + \repeat volta 2 { f4 g( a) \melisma a4 \melismaEnd a f g a a } + \repeat volta 2 {c' a (b) g g a a} + \repeat volta 2 {f4 g( a) \melisma a4 \melismaEnd a f g a a s} +} +chant.A = \relative c' { + \repeat volta 2 {d2 s4 e2 s4 d2 e4} + \repeat volta 2 {e2 s d2 e4} + \repeat volta 2 {d2 s4 e2 s4 d2 e4 s} +} +chant.T = \relative { + \repeat volta 2 {a2( s4 a2) s4 b2 c4} + \repeat volta 2 {c2 s d c4} + \repeat volta 2 {a2( s4 a2) s4 b2 c4 s} +} +chant.B = \relative { + \repeat volta 2 {d2 s4 c2 s4 b2 a4} + \repeat volta 2 {a2 s b2 a4} + \repeat volta 2 {d2 s4 c2 s4 b2 a4 s} +} +chant.verba = \lyricmode { + \set stanza = "V/A" + Ky -- ri -- e e -- le -- i son. + \set stanza = "V/A" + Chri -- ste e -- le -- i -- son. + \set stanza = "V" + Ky -- ri -- e e -- le -- i son. + \set stanza = "A" + Ky -- ri -- e e -- le -- i son. +} + +VocalScore = + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\chant.meta \chant.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba} + >> +FullScore = << + \new StaffGroup << + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\voiceOne \chant.meta \chant.cantus>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.meta \chant.A>> + >> + \new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba} + \new GregorianTranscriptionStaff << + \clef bass + \new GregorianTranscriptionVoice <<\voiceOne \chant.meta \chant.T>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.meta \chant.B>> + >> + >> +>> \ No newline at end of file diff --git a/kyrie_xvi_de/kyrie_xvi_de.tt b/kyrie_xvi_de/kyrie_xvi_de.tt new file mode 100644 index 0000000..26481b3 --- /dev/null +++ b/kyrie_xvi_de/kyrie_xvi_de.tt @@ -0,0 +1,9 @@ +\song{[% purpose %]}{}{% +[% IF parts == 'choir' -%] + \lilypondfile{library/freie_lieder/kyrie_xvi_de/kyrie_xvi_de_schola.ly}% +[% ELSIF parts != 0 -%] + \lilypondfile{library/freie_lieder/kyrie_xvi_de/kyrie_xvi_de_full.ly}% +[% ELSE -%] + \lilypondfile{library/freie_lieder/kyrie_xvi_de/kyrie_xvi_de_lz.ly}% +[% END -%] +} diff --git a/kyrie_xvi_de/kyrie_xvi_de_full.ly b/kyrie_xvi_de/kyrie_xvi_de_full.ly new file mode 100644 index 0000000..4e34c90 --- /dev/null +++ b/kyrie_xvi_de/kyrie_xvi_de_full.ly @@ -0,0 +1,15 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "kyrie_xvi_de_vars.ly" + +\score { + \FullScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/kyrie_xvi_de/kyrie_xvi_de_lz.ly b/kyrie_xvi_de/kyrie_xvi_de_lz.ly new file mode 100644 index 0000000..280716a --- /dev/null +++ b/kyrie_xvi_de/kyrie_xvi_de_lz.ly @@ -0,0 +1,15 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "kyrie_xvi_de_vars.ly" + +\score { + \VocalScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/kyrie_xvi_de/kyrie_xvi_de_schola.ly b/kyrie_xvi_de/kyrie_xvi_de_schola.ly new file mode 100644 index 0000000..87b6646 --- /dev/null +++ b/kyrie_xvi_de/kyrie_xvi_de_schola.ly @@ -0,0 +1,15 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "kyrie_xvi_de_vars.ly" + +\score { + \VocalScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/kyrie_xvi_de/kyrie_xvi_de_vars.ly b/kyrie_xvi_de/kyrie_xvi_de_vars.ly new file mode 100644 index 0000000..6be89ff --- /dev/null +++ b/kyrie_xvi_de/kyrie_xvi_de_vars.ly @@ -0,0 +1,66 @@ +\version "2.24.2" +\language deutsch + +\include "gregorian.ly" + +chant.meta = { + \key f \major + \repeat volta 2 {s4*6} + \repeat volta 2 {s4*7} + s4*6 \finalis + s4*8 \finalis +} +chant.cantus = \fixed c' { + \repeat volta 2 { \melisma a4 \melismaEnd a f g a a } + \repeat volta 2 {c' a (b) g g a a} + \melisma a \melismaEnd a f g a a + \melisma a \melismaEnd a f g (f) e d +} +chant.A = \relative c' { + \repeat volta 2 {f2 s4 d2 e4} + \repeat volta 2 {e2 s d2 e4} + f2 s4 d2 e4 + f2 s4 d2 c4 a +} +chant.T = \relative { + \repeat volta 2 {a2 s4 b2 c4} + \repeat volta 2 {c2 s d c4} + a2 s4 b2 c4 + a2 s4 b2 g4 f +} +chant.B = \relative { + \repeat volta 2 {d2 s4 b2 a4} + \repeat volta 2 {a2 s b2 a4} + d2 s4 b2 a4 + d2 s4 b2 c4 d +} +chant.verba = \lyricmode { + \set stanza = "V/A" + Herr, er -- bar -- me Dich. + \set stanza = "V/A" + Chri -- stus, er -- bar -- me Dich. + \set stanza = "V" + Herr, er -- bar -- me Dich. + \set stanza = "A" + Herr, er -- bar -- me Dich. +} + +VocalScore = + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\chant.meta \chant.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba} + >> +FullScore = << + \new StaffGroup << + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\voiceOne \chant.meta \chant.cantus>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.meta \chant.A>> + >> + \new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba} + \new GregorianTranscriptionStaff << + \clef bass + \new GregorianTranscriptionVoice <<\voiceOne \chant.meta \chant.T>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.meta \chant.B>> + >> + >> +>> \ No newline at end of file diff --git a/maria_durch_ein_dornwald_ging/assignments.tt b/maria_durch_ein_dornwald_ging/assignments.tt new file mode 100644 index 0000000..d73055b --- /dev/null +++ b/maria_durch_ein_dornwald_ging/assignments.tt @@ -0,0 +1,8 @@ +[% + title = 'Maria durch ein Dornwald ging'; + scores = { + band = 'freie_lieder/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_leadsheet.ly' + SATB = 'freie_lieder/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_SATB.ly' + congregation = 'freie_lieder/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_lz.ly' + }; +-%] diff --git a/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_SATB.ly b/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_SATB.ly new file mode 100644 index 0000000..eed832d --- /dev/null +++ b/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_SATB.ly @@ -0,0 +1,9 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "maria_durch_ein_dornwald_ging_vars.ly" + +\score{ + \SATBScore +} diff --git a/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_leadsheet.ly b/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_leadsheet.ly new file mode 100644 index 0000000..99142d0 --- /dev/null +++ b/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_leadsheet.ly @@ -0,0 +1,15 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "maria_durch_ein_dornwald_ging_vars.ly" + +\score{ + \Leadsheet + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_lz.ly b/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_lz.ly new file mode 100644 index 0000000..0e91ede --- /dev/null +++ b/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_lz.ly @@ -0,0 +1,15 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "maria_durch_ein_dornwald_ging_vars.ly" + +\score{ + \MelodyScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_vars.ly b/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_vars.ly new file mode 100644 index 0000000..cf6a2e5 --- /dev/null +++ b/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_vars.ly @@ -0,0 +1,95 @@ +\version "2.24.3" +\language deutsch + +meta = { + \key e \minor + \time 4/4 + \partial 4 + s4 | s1*8 | \breathe s1| s2. \bar "|." +} + +melody = \relative { + \phrasingSlurDashed + h4 | e \(8\) fis g4 h | g fis8 \(e\) + fis4 \(fis\) | g4 8 8 a2 | h r4 g8 \(a\) + h4. a8 h4 c8 \(h\) | a4. g8 a4 h8 \(a\) + g4 \(8\) fis g \(g\) a \(g\) | fis4 \(8\) e + fis4 fis + | e4. fis8 g4 h | g8 (fis) e2 +} +stropheEins = \lyricmode { + \set stanza = "1." + \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- _ -- \markup{\smallCaps a} durch ein Dorn -- wald _ ging. _ + Ky -- rie e -- lei -- son. + \markup{\smallCaps Ma} -- _ -- \markup{\smallCaps ri} -- \markup{\smallCaps a} durch ein _ Dorn -- wald + ging, der _ hat _ in sie -- ben Jahrn kein Laub _ ge -- tra -- gen. + \markup{\smallCaps Je} -- \markup{\smallCaps sus} und \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a} +} +stropheZwei = \lyricmode { + \set stanza = "2." + Was trug _ \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a} unter ih -- rem Her -- zen? + Ky -- rie e -- lei -- son. + Ein _ klei -- nes Kind -- lein _ oh -- ne Schmer -- zen, das trug _ + \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a} un -- ter ih -- _ -- rem Her -- zen. + \markup{\smallCaps Je} -- \markup{\smallCaps sus} und \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a.} +} +stropheDrei = \lyricmode { + \set stanza = "3." + Da ha -- ben die Dor -- nen Ro -- sen ge -- tra -- gen. + Ky -- rie e -- lei -- son. + Als das Kind -- lein durch den _ Wald ge -- tra -- gen, da + ha -- ben die Dor -- _ -- nen _ Ro -- sen ge -- tra -- gen + \markup{\smallCaps Je} -- \markup{\smallCaps sus} und \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a.} +} + +Song.chords = \chordmode { + s4 | d1:m | s2. a4 | d2:m c | f1 + s | c | d:m | a | + d:m | a4 d2.:m +} + +A = \relative c'{ + h4 | 2 e | e dis | e4 e e d | d2 r4 + e4 | 2 2 | e dis | e2 4 4 | cis2 e4 dis | + e4. dis8 e2 | dis4 h2 +} +T = \relative c' { + h4 | g4. a8 h2 | c h | h4 h a fis | g2 r4 + h4 | g4. fis8 g4 a8 g | fis4. e8 fis4 h | g4. a8 h4 a | a2 h2 + h h | a4 g2} +B = \relative { + h,4 e,4. dis8 e4 g | a2 h | e4 d c d | g2 r4 + e4 | 2 e | c h | c c | a4 fis h a | g4. fis8 e4 g | h e2} + +MelodyScore = \new Staff << + \new Voice = "melody" <<\meta \melody>> + \new Lyrics \lyricsto melody \stropheEins + \new Lyrics \lyricsto melody \stropheZwei + \new Lyrics \lyricsto melody \stropheDrei + >> + +Leadsheet = << + \new ChordNames {\Song.chords} + \transpose e d \MelodyScore +>> + +SATBScore = \new ChoirStaff << +\new Staff \with { + \consists Merge_rests_engraver + } << + \meta + \new Voice = "melody" <<\voiceOne \melody>> + \new Voice <<\voiceTwo \A>> +>> + \new Lyrics \lyricsto melody \stropheEins + \new Lyrics \lyricsto melody \stropheZwei + \new Lyrics \lyricsto melody \stropheDrei + \new Staff \with { + \consists Merge_rests_engraver + } << + \clef bass + \meta + \new Voice <<\voiceOne \T>> + \new Voice <<\voiceTwo \B>> + >> +>> \ No newline at end of file diff --git a/maria_durch_ein_dornwald_ging/vorspiel.ly b/maria_durch_ein_dornwald_ging/vorspiel.ly new file mode 100644 index 0000000..e6675f6 --- /dev/null +++ b/maria_durch_ein_dornwald_ging/vorspiel.ly @@ -0,0 +1,49 @@ +\version "2.22.2" +\language deutsch +%\header { +% title = "Maria durch ein' Dornwald ging Vorspiel" +% tagline = "Andreas Nolda" +%} + +\include "../../../lilypond_musician_score_paper.ly" +global = { + \key g \minor + \time 4/4 + \partial 4 + s4 s1*9 s2. + \bar "|." +} +upperOne = \transpose f g {\transpose h c' {\relative{ + h4 | e4. fis8 g4 h | g fis8 e + fis2 | g4 8 8 a2 | h2. g8 a + h4. a8 h4 c8 h | a4. g8 a4 h8 a + g4. fis8 g4 a8 g | fis4. e8 + fis4 fis | e4. fis8 g4 h | g8 fis e4 r4 \bar "|." +}}} +upperTwo = \transpose f g {\relative c{ + r4 | r2. f4 | c'4. d8 e2 | f2. g8 f | e4. d8 c2 | + f4 g as b, | es f g as, | des es f g, | c d e b | as c f8 e f4 | e f r4 +}} +lowerMan = \transpose f g{\relative a,{ + r4 | r1 | r2. c4 | f4. es8 des2 | c2. r4 | r1*3 + r2. c4 | f4. es8 des4 as8 b | c4 f r4 +}} + +\score{ + \transpose g e { + \new PianoStaff << + \new Staff = upper \with { + \consists Merge_rests_engraver + } << + \clef "treble" + \new Voice = "main" <<\global {\voiceOne \upperOne} >> + \new Voice <<\global {\voiceTwo \upperTwo} >> + >> + \new Staff = lower << + \clef "bass" + \new Voice <<\global \lowerMan >> + >> + >> + } + \layout {} +} diff --git a/o_haupt_voll_blut_und_wunden/assignments.tt b/o_haupt_voll_blut_und_wunden/assignments.tt new file mode 100644 index 0000000..efcf26b --- /dev/null +++ b/o_haupt_voll_blut_und_wunden/assignments.tt @@ -0,0 +1,11 @@ +[% + song_title = "O Haupt voll Blut und Wunden"; + scores = { + congregation = "freie_lieder/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_lz.ly" + leadsheet = "freie_lieder/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_leadsheet.ly" + }; + credits = { + lyrics = "Paul Gerhardt 1656 nach ``Salve, caput cruentatum'' des Arnulf von Löwn vor 1250" + melody = 'Hans Leo Haßler 1601/Brieg nach 1601' + } +-%] diff --git a/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_leadsheet.ly b/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_leadsheet.ly new file mode 100644 index 0000000..45f881c --- /dev/null +++ b/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_leadsheet.ly @@ -0,0 +1,20 @@ +\version "2.24.3" +\language deutsch + +\include "o_haupt_voll_blut_und_wunden_vars.ly" +\include "../../../lilypond_musician_score_paper.ly" + +\score{ + << + \new ChordNames { + \Song.Chords + } + \Song.MelodyScore + >> + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_lz.ly b/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_lz.ly new file mode 100644 index 0000000..dbde215 --- /dev/null +++ b/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_lz.ly @@ -0,0 +1,15 @@ +\version "2.24.3" +\language deutsch + +\include "o_haupt_voll_blut_und_wunden_vars.ly" +\include "../../../lilypond_songsheet_paper.ly" + +\score{ + \Song.MelodyScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_vars.ly b/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_vars.ly new file mode 100644 index 0000000..a0dbc26 --- /dev/null +++ b/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_vars.ly @@ -0,0 +1,55 @@ +\version "2.24.3" +\language deutsch + +melody = \fixed c' { + \key a \minor + \time 2/2 + \partial 2 + \repeat unfold 2 { + e2 | a4 g f e | d2 e4 \breathe + h | c' c' h h | a2 \breathe } + r4 c' | h g a h | c'2 4 \breathe + g | a g a f | e2 \breathe + c' | h4 d' c' h | a2 h4 \breathe + e | f e d d | e2 \bar "|." +} + +strophe.I = \lyricmode { + \set stanza = "1." + O Haupt voll Blut und Wun -- den, voll Schmerz und vol -- ler Hohn. + o Haupt, zum Spott ge -- bun -- den mit ei -- ner Dor -- nen -- Kron, + o Haupt sonst schön ge -- krö -- net mit höch -- ster Ehr und Zier, + jetzt a -- ber frech ver -- höh -- net: ge -- grü -- ßet seist Du mir. +} +strophe.II = \lyricmode { + \set stanza = "2." + Du ed -- les An -- ge -- sich -- te, vor dem sonst al -- le Welt + er -- zit -- tert im Ge -- rich -- te, wi bist Du so ent -- stellt. + Wie bist Du so er -- blei -- chet, wer hat Dein Au -- gen -- licht, + dem sonst ein Licht nicht glei -- chet, so schänd -- lich zu -- ge -- richt't? +} +strophe.III = \lyricmode { + \set stanza = "3." + Die Far -- be Dei -- ner Wan -- gen, der ro -- ten Lip -- pen Pracht + ist hin und ganz ver -- gan -- gen; des blas -- sen To -- des Macht + hat al -- les hin -- ge -- nom -- men, hat al -- les hin -- ge -- rafft, + und so bist Du ge -- kom -- men von Dei -- nes Lei -- bes Kraft. +} + +Song.Chords = \chordmode { + \repeat unfold 2 { + s2 | a:m d:m g c + a:m e:4 a:m + } + s g d:m c1 + f2 d:m7 e1 + g2 a:m d:m7 e:m + d:m7 d:m e1 + a2:m e:4 a:m +} +Song.MelodyScore = \new Staff << + \new Voice = "melody" \melody + \new Lyrics \lyricsto melody {\strophe.I} + \new Lyrics \lyricsto melody {\strophe.II} + \new Lyrics \lyricsto melody {\strophe.III} + >> diff --git a/o_heiland_reiss_die_himmel_auf/assignments.tt b/o_heiland_reiss_die_himmel_auf/assignments.tt new file mode 100644 index 0000000..b3a8612 --- /dev/null +++ b/o_heiland_reiss_die_himmel_auf/assignments.tt @@ -0,0 +1,7 @@ +[% + song_title = "O Heiland, reiß die Himmel auf"; + scores = { + congregation = "freie_lieder/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_lz.ly" + SATB = "freie_lieder/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_SATB.ly" + }; +-%] diff --git a/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf.tt b/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf.tt new file mode 100644 index 0000000..22ef467 --- /dev/null +++ b/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf.tt @@ -0,0 +1,7 @@ +\song{[% purpose %]}{O Heiland reiß die Himmel auf}{% +[% IF parts != 0 -%] + \lilypondfile{library/freie_lieder/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_SATB.ly}% +[% ELSE -%] + \lilypondfile{library/freie_lieder/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_lz.ly}% +[% END -%] +} diff --git a/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_SATB.ly b/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_SATB.ly new file mode 100644 index 0000000..7594f8b --- /dev/null +++ b/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_SATB.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch +% GL 218 + +\include "../../../lilypond_musician_score_paper.ly" +\include "o_heiland_reiss_die_himmel_auf_vars.ly" + +\score{ + \Song.SATBScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_lz.ly b/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_lz.ly new file mode 100644 index 0000000..d11f0ba --- /dev/null +++ b/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_lz.ly @@ -0,0 +1,16 @@ +\version "2.24.2" +\language deutsch +% GL 218 + +\include "../../../lilypond_songsheet_paper.ly" +\include "o_heiland_reiss_die_himmel_auf_vars.ly" + +\score{ + \Song.MelodyScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_vars.ly b/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_vars.ly new file mode 100644 index 0000000..53f1789 --- /dev/null +++ b/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_vars.ly @@ -0,0 +1,81 @@ +\version "2.24.2" +\language deutsch +% GL 218 +% S: Choralbuch zum Evangelischen Kirchengesangbuchy, Ausgabe Wurttemberg + +Song.meta = { + \key a \minor + \time 6/4 + \partial 1 + s4 s2. s1. s2. \breathe + s2. s1. s2. \breathe + s2. s1. s2. \breathe + s2. s1. s2 \bar "|." +} +Song.S = \relative c' { + d4 f2 g4 | a2 d,4 f e2 | d2. + a'4 a h | c2 f,4 a g2 | f2. + c'4 c c | 2 a4 d2 4 | c2. + a4 a g | a2 f4 g e2 | d +} +Song.stropheEins = \lyricmode { + \set stanza = "1." + O Hei -- land reiß die Him -- mel auf, + he -- rab he -- rab vom Him -- mel lauf. + Reiß ab vom Him -- mel Tor und Tür, + reiß ab, wo Schloss und Rie -- gel für. +} +Song.stropheZwei = \lyricmode { + \set stanza = "2." + O Gott, ein Tau von Him -- mel gieß, + im Tau he -- rab, o Hei -- land, fließ. + Ihr Wol -- ken brecht und reg -- net aus + den Kö -- nig ü -- ber Ja -- kobs Haus. +} +Song.stropheDrei = \lyricmode { + \set stanza = "3." + O Erd, schlag aus, schlag aus, o Erd, + dass Berg und Tal, grün al -- les werd. + O Erd, her -- für dies Blüm -- lein bring, + o Hei -- land, aus der Er -- den spring. +} +Song.A = \fixed c' { + d4 d2 e4 | f2 d4 d~ d cis | d2. + d4 c d | e2 a,4 c2. | c + f4 g f | e2 c4 f2 g4 | e2. + 4 f e | c2 4 d c h, | a,2 +} +Song.T = \relative { + f4 a2 c4 | c2 b4 a4 2 | 2. + f4 a f | g2 f4 f~ f e | a2. + 4 c a | g2 a4 a c h | c2. + 4 d h | a2 4 d, a'2 | f +} +Song.B = \relative { + d,4 d'2 c4 | f,2 g4 d' a2 | d2. +4 f d | c2 d4 a c2 | f,2. +f'4 e f | c2 f4 d2 g4 | a2. +4 d, e | f2 a,4 h c2 | d +} + +Song.MelodyScore = \new Staff << + \new Voice = "melody" <<\Song.meta \Song.S>> + \new Lyrics \lyricsto melody {\Song.stropheEins} + \new Lyrics \lyricsto melody {\Song.stropheZwei} + \new Lyrics \lyricsto melody {\Song.stropheDrei} + >> + + Song.SATBScore = \new ChoirStaff << + \new Staff << + \new Voice = "melody" <<\voiceOne \Song.meta \Song.S>> + \new Voice <<\voiceTwo \Song.meta \Song.A>> + >> + \new Lyrics \lyricsto melody {\Song.stropheEins} + \new Lyrics \lyricsto melody {\Song.stropheZwei} + \new Lyrics \lyricsto melody {\Song.stropheDrei} + \new Staff << + \clef bass + \new Voice <<\voiceOne \Song.meta \Song.T>> + \new Voice <<\voiceTwo \Song.meta \Song.B>> + >> + >> \ No newline at end of file diff --git a/preise_zunge_und_verkuende/assignments.tt b/preise_zunge_und_verkuende/assignments.tt new file mode 100644 index 0000000..6694eff --- /dev/null +++ b/preise_zunge_und_verkuende/assignments.tt @@ -0,0 +1,5 @@ +[% + parts = { + schola = "freie_lieder/co_preise_zunge_und_verkuende/preise_zunge_und_verkuende_full.ly" + }; +-%] diff --git a/preise_zunge_und_verkuende/preise_zunge_und_verkuende_full.ly b/preise_zunge_und_verkuende/preise_zunge_und_verkuende_full.ly new file mode 100644 index 0000000..fcf3aa0 --- /dev/null +++ b/preise_zunge_und_verkuende/preise_zunge_und_verkuende_full.ly @@ -0,0 +1,8 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "preise_zunge_und_verkuende_vars.ly" +\include "gregorian.ly" + +\score { \VocalScore } diff --git a/preise_zunge_und_verkuende/preise_zunge_und_verkuende_lz.ly b/preise_zunge_und_verkuende/preise_zunge_und_verkuende_lz.ly new file mode 100644 index 0000000..606331e --- /dev/null +++ b/preise_zunge_und_verkuende/preise_zunge_und_verkuende_lz.ly @@ -0,0 +1,10 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "preise_zunge_und_verkuende_vars.ly" +\include "gregorian.ly" + +\score { + \VocalScore +} diff --git a/preise_zunge_und_verkuende/preise_zunge_und_verkuende_vars.ly b/preise_zunge_und_verkuende/preise_zunge_und_verkuende_vars.ly new file mode 100644 index 0000000..c223fa2 --- /dev/null +++ b/preise_zunge_und_verkuende/preise_zunge_und_verkuende_vars.ly @@ -0,0 +1,150 @@ +\version "2.24.3" +\language deutsch + +\include "gregorian.ly" +% Ps 145 (144) 8 +% 3. Modus +chant.meta = { + \key c \major + \set Score.timing = ##f +} +chant.cantus.II = \fixed c' { + a a(c' h) g g(e) f d(c) d(e) e(f e) \divisioMinima + d d(a) a(g) e(d) f e(d) d \divisioMaxima +} +chant.cantus.I = \fixed c' { + d4 e g(a) a(g) a c' c'(h) a(g) \divisioMinima + c' d' e'(f') a(g) c' h(a) a \divisioMaxima + \chant.cantus.II +} +chant.cantus.complete = { + \chant.cantus.I + \chant.cantus.II \finalis +} + +verba.I = \lyricmode { + \set stanza = "1." + Prei -- se Zun -- ge und ver -- kün -- de + den er -- hab' -- nen Waf -- fen -- gang; + auf das Kreuz, das Sie -- ges -- zei -- chen, + sin -- ge den Tri -- umph -- ge -- sang. + Sin -- ge, wie der Welt Er -- lö -- ser + starb und den -- noch Sieg er -- rang. +} +verba.II = \lyricmode { + \set stanza = "2." + Denn ver -- blen -- det aß sich A -- dam + einst vom Bau -- me das Ge -- richt; + doch der Schöp -- fer voll Er -- bar -- men + woll -- te sei Ver -- der -- ben nicht + und hat selbst den Baum er -- ko -- ren, + der den Fluch des Bau -- mes bricht. +} +verba.III = \lyricmode { + \set stanza = "3." + Got -- tes Plan, uns zu er -- lö -- sen, + hat ver -- langt die Op -- fer -- tat, + und des Va -- ters ew' -- ge Weis -- heit + macht' zu -- schan -- den den Ver -- rat + und ver -- lieh barm -- her -- zig Hei -- lung, + wo der Feind ver -- wun -- det hat. +} +verba.IV = \lyricmode { + \set stanza = "4." + So ward in der Zei -- ten Fül -- le + uns ge -- sandt des Va -- ters Sohn, + er, der Schöp -- fer al -- ler Wel -- ten, + stieg he -- rab vom Him -- mels -- thron + und ward Fleisch und ward ge -- bo -- ren + und ward ei -- ner Jung -- frau Sohn. +} +verba.V = \lyricmode { + \set stanza = "5." + Als nach drei -- ßig Er -- den -- jah -- ren + für den Herrn die Stun -- de kam, + dass er uns' -- res Hei -- les we -- gen + Tod und Lei -- den auf sich nahm, + wur -- de er er -- höht am Kreu -- ze, + dar -- ge -- bracht als Got -- tes -- lamm. +} +verba.VI = \lyricmode { + \set stanza = "6." + Seht den Es -- sig, seht die Gal -- le. + Dor -- nen, Nä -- gel, Speer voll Wut + sei -- nen zar -- ten Leib durch -- boh -- ren, + Was -- ser strömt her -- vor und Blut; + Er -- de, Mee -- re, Ster -- ne, Wel -- ten + wer -- den rein durch sol -- che Flut. +} +verba.VII.I = \lyricmode { + Hei -- lig Kreuz, du Baum der Treu -- e, + ed -- ler Baum, dem kei -- ner gleich, + kei -- ner so an Laub und Blü -- te, + kei -- ner so an Früch -- ten reich: +} +verba.VII.II = \lyricmode { + Sü -- ßes Holz, o sü -- ße Nä -- gel, + wel -- che sü -- ße Last an euch. +} +verba.VII.complete = \lyricmode { +% \set stanza = "7." + \verba.VII.I + \verba.VII.II +} +verba.VIII = \lyricmode { + \set stanza = "8." + Beu -- ge, ho -- her Baum, die Zwei -- ge, + wer -- de weich an Stamm und Ast, + denn dein har -- tes Holz muss tra -- gen + ei -- ne kö -- nig -- li -- che Last, + gibt den Glie -- dern dei -- nes Schöp -- fers + an dem Stam -- me lin -- de Rast. +} +verba.IX = \lyricmode { + \set stanza = "9." + Du al -- lein warst wert, zu tra -- gen + al -- ler Sün -- den Lö -- se -- geld, + du, die Plan -- ke, die uns ret -- tet + aus dem Schiff -- bruch die -- ser Welt. + Du, ge -- salbt vom Blut des Lam -- mes, + Pfos -- ten, der den Tod ab -- hält. +} +verba.X = \lyricmode { + \set stanza = "10." + Lob und Ruhm sei oh -- ne En -- de + Gott, dem höch -- sten Herrn, ge -- weiht. + Preis dem Va -- ter und dem Soh -- ne + und dem Geist der Hei -- lig -- keit. + Ei -- nen Gott in drei Per -- so -- nen + lo -- be al -- le Welt und Zeit. +} + +VocalScore = << + \new GregorianTranscriptionStaff { + \new GregorianTranscriptionVoice = "chorus" {\chant.meta \chant.cantus.complete} + \new GregorianTranscriptionVoice = "I" {\chant.meta \chant.cantus.complete} + \new GregorianTranscriptionVoice = "chorus_short" {\chant.meta \chant.cantus.II \finalis} + \new GregorianTranscriptionVoice = "II" {\chant.meta \chant.cantus.complete} + } + \new GregorianTranscriptionLyrics << + \lyricsto chorus {\verba.VII.complete} + \lyricsto I {\verba.I} + \lyricsto chorus_short {\verba.VII.II} + \lyricsto II {\verba.II} + >> + \new GregorianTranscriptionLyrics << + \lyricsto I {\verba.III} + \lyricsto II {\verba.IV} + >> + \new GregorianTranscriptionLyrics << + \lyricsto I {\verba.V} + \lyricsto II {\verba.VI} + >> + \new GregorianTranscriptionLyrics << + \lyricsto I {\verba.VIII} + \lyricsto II {\verba.IX} + >> + \new GregorianTranscriptionLyrics << + \lyricsto I {\verba.X} + >> +>> diff --git a/raise_a_hallelujah/assignments.tt b/raise_a_hallelujah/assignments.tt new file mode 100644 index 0000000..b475aaa --- /dev/null +++ b/raise_a_hallelujah/assignments.tt @@ -0,0 +1,20 @@ +[% + song_title = "Raise a Hallelujah"; + lyrics = " +\\St{1}{I raise a Hallelujah in the presence of my enemies +I raise a Hallelujah louder than the unbelief +I raise a Hallelujah, my weapon is a melody +I raise a Hallelujah, heaven comes to fight for me} +\\Chorus{I'm gonna sing in the middle of the storm +Louder and louder, you're gonna hear my praises roar +Up from the ashes, hope will arise +Death is defeated, the King is alive} +\\St{2}{I raise a Hallelujah with everything inside of me +I raise a Hallelujah I will watch the darkness flee +I raise a Hallelujah in the middle of the mystery +I raise a Hallelujah fear you lost your hold on me} +\\Bridge{Sing a little louder (Sing a little louder)} +\\Outro{I raise a Hallelujah  I raise a Hallelujah} + "; + credits.TM = "Jake Stevens, Jonathan David Helser, Melissa Helser, Molly Skaggs" +-%] diff --git a/resp_herr_auf_dich_vertraue_ich/assignments.tt b/resp_herr_auf_dich_vertraue_ich/assignments.tt new file mode 100644 index 0000000..ea77c3c --- /dev/null +++ b/resp_herr_auf_dich_vertraue_ich/assignments.tt @@ -0,0 +1,6 @@ +[% + scores = { + congregation = 'freie_lieder/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_lz.ly' + leadsheet = 'freie_lieder/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_full.ly' + }; +-%] diff --git a/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_full.ly b/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_full.ly new file mode 100644 index 0000000..fba97ce --- /dev/null +++ b/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_full.ly @@ -0,0 +1,8 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "resp_herr_auf_dich_vertraue_ich_vars.ly" +\include "gregorian.ly" + +\score { \FullScore } diff --git a/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_lz.ly b/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_lz.ly new file mode 100644 index 0000000..1583727 --- /dev/null +++ b/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_lz.ly @@ -0,0 +1,10 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "resp_herr_auf_dich_vertraue_ich_vars.ly" +\include "gregorian.ly" + +\score { + \VocalScore +} diff --git a/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_vars.ly b/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_vars.ly new file mode 100644 index 0000000..16c600c --- /dev/null +++ b/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_vars.ly @@ -0,0 +1,68 @@ +\version "2.24.3" +\language deutsch + +\include "gregorian.ly" +chant.meta = { + \key c \major + \set Score.timing = ##f +} +chant.cantus.I = \relative c' { + f4 f g f g a a +} +chant.cantus.II = \relative c''{ + g f g a g f d f g g f +} +chant.cantus.III = \relative c'' { + a a(b) a a a a a a a g(a) g \divisioMinima + g g g g f g( a) a +} +chant.cantus.V = \relative c'' { + a a a a a(b) a g g g(a) g \divisioMinima + g g g g f g( a) a +} +verba.I = \lyricmode { + Herr auf Dich ver -- trau -- e ich +} +verba.II = \lyricmode { + in Dei -- ne Hän -- de le -- ge ich mein Le -- ben +} +verba.III = \lyricmode { + Lass leuch -- ten ü -- ber Dei -- nem Knecht Dein Ant -- litz, + hilf mir in Dei -- ner Gü -- te +} +verba.IV = \lyricmode { + Eh -- re sei dem Va -- ter, und dem Soh -- ne und dem Hei -- li -- gen Geis -- te. +} + +VocalScore = <<\new GregorianTranscriptionStaff << + \chant.meta + { + \new GregorianTranscriptionVoice = "melodyI" {\chant.cantus.I} + \divisioMaior + \new GregorianTranscriptionVoice = "melodyII" {\chant.cantus.II} + \finalis + \new GregorianTranscriptionVoice = "melodyIII" {\chant.cantus.III} + \divisioMaior + \new GregorianTranscriptionVoice = "melodyIV" {\chant.cantus.II} + \finalis + \new GregorianTranscriptionVoice = "melodyV" {\chant.cantus.V} + \finalis + \new GregorianTranscriptionVoice = "melodyVI" {\chant.cantus.I} + \divisioMaior + \new GregorianTranscriptionVoice = "melodyVII" {\chant.cantus.II} + \finalis + } +>> + \new GregorianTranscriptionLyrics << + \lyricsto melodyI {\set stanza = "V/A" \verba.I} + \lyricsto melodyII {\verba.II} + \lyricsto melodyIII {\set stanza = "V" \verba.III} + \lyricsto melodyIV {\set stanza = "A" \verba.II} + \lyricsto melodyV {\set stanza = "V" \verba.IV} + \lyricsto melodyVI {\set stanza = "A" \verba.I} + \lyricsto melodyVII {\verba.II} + >> + >> +FullScore = << + {\VocalScore} +>> diff --git a/rorate_modern/assignments.tt b/rorate_modern/assignments.tt new file mode 100644 index 0000000..7ec858d --- /dev/null +++ b/rorate_modern/assignments.tt @@ -0,0 +1,9 @@ +[% + song_title = "Rorate Cæli"; + scores = { + band = "freie_lieder/rorate_modern/rorate_modern_full" + SATB = "freie_lieder/rorate_modern/rorate_modern_schola" + congregation = "freie_lieder/rorate_modern/rorate_modern_lz" + }; + after_song = '\mytable{freie_lieder/rorate_modern/table.tex}' +-%] diff --git a/rorate_modern/rorate_modern_full.ly b/rorate_modern/rorate_modern_full.ly new file mode 100644 index 0000000..b95bcae --- /dev/null +++ b/rorate_modern/rorate_modern_full.ly @@ -0,0 +1,12 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "rorate_modern_vars.ly" +\include "gregorian.ly" + +\score { \AntFullScore } +\score { \vIFullScore } +\score { \vIIFullScore } +\score { \vIIIFullScore } +\score { \vIVFullScore } \ No newline at end of file diff --git a/rorate_modern/rorate_modern_lz.ly b/rorate_modern/rorate_modern_lz.ly new file mode 100644 index 0000000..531a9c0 --- /dev/null +++ b/rorate_modern/rorate_modern_lz.ly @@ -0,0 +1,10 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "rorate_modern_vars.ly" +\include "gregorian.ly" + +\score { + \AntVocalScore +} \ No newline at end of file diff --git a/rorate_modern/rorate_modern_schola.ly b/rorate_modern/rorate_modern_schola.ly new file mode 100644 index 0000000..5fa696a --- /dev/null +++ b/rorate_modern/rorate_modern_schola.ly @@ -0,0 +1,12 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "rorate_modern_vars.ly" +\include "gregorian.ly" + +\score { \AntVocalScore } +\score { \vIVocalScore } +\score { \vIIVocalScore } +\score { \vIIIVocalScore } +\score { \vIVVocalScore } \ No newline at end of file diff --git a/rorate_modern/rorate_modern_vars.ly b/rorate_modern/rorate_modern_vars.ly new file mode 100644 index 0000000..c0764b6 --- /dev/null +++ b/rorate_modern/rorate_modern_vars.ly @@ -0,0 +1,385 @@ +\version "2.24.2" +\language deutsch + +\include "gregorian.ly" +chant.meta = { + \key f \major + \set Score.timing = ##f +} +chant.ant.meta = { + {\chant.meta} + s4*12 \divisioMinima + s4*9 \divisioMaior + s4*11 \divisioMinima + s4*10 \finalis +} +chant.ant.cantus = \relative { + s4 f'4 g (a) a4 d c c (b) a a (g) + a4 b a g (f) e4 f (e) d4 + f4 g (a) a4 d c c(b a) a (g) + a4 b a a g (f) e4 f (e) d4 +} +chant.ant.S = \relative c' { + s4 f g(a) a b2 s4*3 g2 + s4 f2 e s4 d2 s4 + f4 g (a) a a2 a4( g f) f( e) + s4 f2 s4 e2 s4 d2 s4 +} +chant.ant.A = \relative c' { + s4 d e s c d2 s4*3 c2 + s4 d2 c s4 a2 s4 + f'4 g (a) es d2 d2 s4 c2 + s4 d2 s4 c2 s4 a2 s4 +} +chant.ant.T = \relative { + s4 a g s f f2 s4*3 e2 + s4 d2 g s4 f2 s4 + f4 g (a) c a2 b2 s4 g2 + s4 b2 s4 g2 s4 d2 s4 +} +chant.ant.B = \relative { + d,2 c4 s f b2 s4*3 c2 + s4 b2 c s4 d2 s4 + f,4 g( a) g fis2 g a4 c2 + s4 g2 s4 c2 s4 d2 s4 +} +verba.ant = \lyricmode { + \set stanza = "V/A" + Ro -- rá -- te cæ -- li dé -- su -- per, et nu -- bes plu -- ant iu -- stum. + a -- pe -- ri -- á -- tur tér -- ra, et gér -- mi -- net Sal -- va -- tó -- rem. +} + +chant.vI.meta = { + \chant.meta + s4*11 \divisioMinima + s4*9 \divisioMaxima + s4*4 \divisioMinima + s4*9 \divisioMaior + s4*11 \augmentum s4 \divisioMaxima + s4*8 \divisioMaior + s4*16 \finalis +} +chant.vI.cantus = \relative c' { + s4 f4 g a a( g) a a( b) a a + s4 a2 g4 b a a( g) f + a b c2 + c c4( d) c c( b) a a + f g( a) a \augmentum a g( b) a a( g) f f + a2 a4 g c c( b) a + s f g( a) a a a( b) a a g( f) e f( e) d +} +chant.vI.S = \relative c' { + d2 s4*9 + d2 s4*4 e2 f4 + s2 e + s4*5 d2 s2 + s4 c2 s4*4 \augmentum s4 d2 s2 + d2 g s4 a2 s4 + f2 s4*4 f2 s e s4 d2 s4 +} +chant.vI.A = \relative c' { + a2 s4*9 + g2( s4*4 g2) a4 + s2 a + s4*5 a2 s2 + s4 g2 s4*4 \augmentum s4 d'2 s2 + a2 c s4 a2 s4 + b2 s4*4 c2 s c s4 a2 s4 +} +chant.vI.T = \relative { + d2 s4*9 + d2 s4*4 c2 d4 + s2 c + s4*5 d2 s2 + s4 e2 s4*4 \augmentum s4 f2 s2 + f2 e s4 d2 s4 + d2 s4*4 f2 s g s4 d2 s4 +} +chant.vI.B = \relative { + d2 s4*9 + b2 s4*4 e,2 d4 + s2 e + s4*5 f2 s2 + s4 g2 s4*4 \augmentum s4 a2 s2 + b2 g s4 d2 s4 + b'2 s4*4 a2 s c s4 d2 s4 +} +verba.vI = \lyricmode { + \set stanza = "1." + \override LyricText.self-alignment-X = #LEFT + Ne i -- ras -- cá -- ris Dó -- mi -- ne, "ne ultra memíneris" in -- i -- qui -- tá -- tis: + ec -- ce "cívitas Sancti facta est desérta:" "Sion de" -- sér -- ta fac -- ta est: + Je -- rú -- sa -- lem de -- so -- lá -- ta est: + "domus sancificatiónis tuæ et" gló -- ri -- æ tu -- æ, u -- bi lau -- da -- vé -- runt te pa -- tres nos -- tri. +} +chant.vII.meta = { + \chant.meta + s4*13 \augmentum s4 + s4*5 \divisioMaior + s4*10 \divisioMaxima + s4*11 \divisioMaior + s4*9 \divisioMaxima + s4*17 \finalis +} +chant.vII.cantus = \relative c' { + s4 f4 g(a) a a a2 g4 a a(b) a \augmentum a + a g f e d + a'2 a g4 b a a( g) f + s a b c2 d4 c c(b) a a + f g(a) a2 f4 g f(e) + s4 f g(a) a a2 4(b) a a(g f) e f(e) d +} +chant.vII.S = \relative c' { + d2 s4*8 c2 s4*3 \augmentum s4 d2 s4 + d2 e s4*3 f2 s4 + a2 s4*5 a2 s2 + s4*3 a2 s4 e2 s4 + d2 s4*3 d2 s4*3 c2 s d s4 +} +chant.vII.A = \relative c' { + a2 s4*8 a2 s4*3 \augmentum s4 a2 s4 + g2 c s4*3 a2 s4 + e'2 s4*5 f2 s2 + s4*3 d2 s4 e2 s4 + a,2 s4*3 b2 s4*3 a2 s a s4 +} +chant.vII.T = \relative { + d2 s4*8 e2 s4*3 \augmentum s4 f2 s4 + d2 e s4*3 f2 s4 + a2 s4*5 a2 s2 + s4*3 f2 s4 c2 s4 + f2 s4*3 g2 s4*3 e2 s f s4 +} +chant.vII.B = \relative { + d2 s4*8 a2 s4*3 \augmentum s4 d2 s4 + b2 a s4*3 d2 s4 + c2 s4*5 d2 s2 + s4*3 b2 s4 a2 s4 + d2 s4*3 g,2 s4*3 a2 s d s4 +} +verba.vII = \lyricmode { + \set stanza = "2." + \override LyricText.self-alignment-X = #LEFT + Pec -- cá -- vi -- mus, "et facti sumus tam" -- quam im -- mún -- dus nos, + et ce -- cí -- di -- mus + "quasi" "fóli" -- um un -- ni -- vér -- si: + et i -- "niquitátes nostræ quais ventus" ab -- stu -- lé -- runt nos: + abs -- con -- "dísti fáciem tuam" a no -- bis, + et al -- li -- "sísti nos in manu in" -- i -- qui -- tá -- tis nos -- træ. +} +chant.vIII.meta = { + \chant.meta + s4*11 \divisioMaior + s4*10 \divisioMaxima + s4*11 \divisioMinima + s4*10 \divisioMaxima + s4*17 \finalis +} +chant.vIII.cantus = \relative c' { + s4 f g(a) a2 g4 c c(b) a + a a(d) c b a a(g) f f + s4 a b c2 c4(d) c c(b) a + s4 a2 g4(b) a a a(g) f + s4 f g(a) a2 a4(b) a a(g f) e f(e) d +} +chant.vIII.S = \relative c' { + d2 s4*5 + s g2 s4*3 g2 s4 f + f2 s4 f2 f s4 f2 s4 + a2 s4 g2 s g f4 + f2 f s f s4 f2 s d s4 +} +chant.vIII.A = \relative c' { + a2 s4*5 + s d2 s4*3 c2 s4 a + d2 s4 c2 b s4 c2 s4 + c2 s4 d2 s e a,4 + d2 c s d s4 c2 s a s4 +} +chant.vIII.T = \relative { + d2 s4*5 + s g2 s4*3 e2 s4 f + f2 s4 f2 f s4 f2 s4 + f2 s4 g2 s g f4 + f2 f s b s4 e,2 s d2 s4 +} +chant.vIII.B = \relative { + d2 s4*5 + s b2 s4*3 c2 s4 d + b2 s4 a2 g s4 a2 s4 + a2 s4 b2 s c d4 + b2 a s g s4 a2 s d2 s4 +} +verba.vIII = \lyricmode { + \set stanza = "3." + \override LyricText.self-alignment-X = #LEFT + Vi -- de "Dómine afflictiónem pó" -- pu -- li tu -- i, + et mit -- te quem mis -- sú -- rus es: + e -- mít -- "te Agnum domina" -- tó -- rem ter -- ræ, + "de Petra desérti ad montem" fí -- li -- æ Si -- on: + ut áu -- "ferat ipse jugum cap" -- ti -- vi -- tá -- tis nos -- træ. +} +chant.vIV.meta = { + \chant.meta + s4*16 \divisioMaior + s4*10 \divisioMaxima + s4*12 \divisioMaior + s4*8 \divisioMaxima + s4*6 \divisioMinima + s4*7 \divisioMaxima + s4*13 \divisioMaior + s4*13 \finalis +} +chant.vIV.cantus = \relative c' { + s4 f4 g a2 + s4 f4 g a2 a4 g c c(b) a \divisioMaior + a a d c c b a a(g) f \divisioMaxima + s a b c c c(d) c c(b) a a \divisioMaior + s a2 g4(f) f(b) a \divisioMaxima + s d c(b) a a \divisioMinima + a g a f(g) f(e) \divisioMaxima + f g(a) a2 d4 c c b a a(g) f \divisioMaior + a a a(b) a a g g(f) e f(e) d \finalis +} +chant.vIV.S = \relative c' { + d2 s4 c2 d s4 f2 f s4 f2 f4 + s2 f2 s4*3 e2 f4 + f2 s e s d s + e s4*3 d2 d4 + f2 s4*3 f4 + f2 s4 c2 s + f2 s4*3 f2 s4*3 e2 f4 + a2 s4*5 g2 s4 e2 d4 +} +chant.vIV.A = \relative c' { + a2 s4 a2 a s4 a2 b s4 g2 a4 + s2 b2 s4*3 g2 b4 + c2 s c s a s + c s4*3 b2 a4 + b2 s4*3 a4 + b2 s4 g2 s + a2 s4*3 b2 s4*3 c2 c4 + e2 s4*5 b2 s4 a2 a4 +} +chant.vIV.T = \relative { + d2 s4 f2 f s4 c2 d s4 b2 c4 + s2 d2 s4*3 e2 d4 + f2 s a s f s + e s4*3 g2 f4 + d2 s4*3 c4 + d2 s4 e2 s + c2 s4*3 d2 s4*3 g2 a4 + a2 s4*5 d,2 s4 c2 d4 +} +chant.vIV.B = \relative { + d2 s4 f,2 d' s4 f,2 f s4 f2 f4 + s2 b2 s4*3 c2 d4 + a2 s c s d s + a s4*3 b2 d,4 + b'2 s4*3 f4 + f2 s4 g2 s + f2 s4*3 b2 s4*3 c2 f4 + c2 s4*5 g2 s4 a2 d4 +} +verba.vIV = \lyricmode { + \set stanza = "4." + \override LyricText.self-alignment-X = #LEFT + Con -- so "lámini," + con -- so "lámini," pó -- pu -- le me -- us: + ci -- to vé -- ni -- et sa -- lus tu -- a: + qua -- re mæ -- ró -- re con -- sú -- me -- ris, + "quia innovávit" te do -- lor? + Sal -- vá -- bo te, no -- li ti -- mé -- re, + e -- go "enim sum" Dó -- mi -- nus De -- us tu -- us, + Sanc -- tus Is -- ra -- el, Re -- démp -- tor tu -- us. +} +AntVocalScore = \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\chant.ant.meta \chant.ant.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melody {\verba.ant} + >> +AntFullScore = << + {\AntVocalScore} + \new StaffGroup << + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice <<\voiceOne \chant.ant.meta \chant.ant.S>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.ant.meta \chant.ant.A>> + >> + \new GregorianTranscriptionStaff << + \clef bass + \new GregorianTranscriptionVoice <<\voiceOne \chant.ant.meta \chant.ant.T>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.ant.meta \chant.ant.B>> + >> + >> +>> +vIVocalScore = \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melodyvI" <<\chant.vI.meta \chant.vI.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melodyvI {\verba.vI} + >> +vIFullScore = << + {\vIVocalScore} + \new StaffGroup << + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice <<\voiceOne \chant.vI.meta \chant.vI.S>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.vI.meta \chant.vI.A>> + >> + \new GregorianTranscriptionStaff << + \clef bass + \new GregorianTranscriptionVoice <<\voiceOne \chant.vI.meta \chant.vI.T>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.vI.meta \chant.vI.B>> + >> + >> +>> +vIIVocalScore = \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melodyvII" <<\chant.vII.meta \chant.vII.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melodyvII {\verba.vII} +>> +vIIFullScore = << + {\vIIVocalScore} + \new StaffGroup << + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice <<\voiceOne \chant.vII.meta \chant.vII.S>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.vII.meta \chant.vII.A>> + >> + \new GregorianTranscriptionStaff << + \clef bass + \new GregorianTranscriptionVoice <<\voiceOne \chant.vII.meta \chant.vII.T>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.vII.meta \chant.vII.B>> + >> + >> +>> +vIIIVocalScore = \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melodyvIII" <<\chant.vIII.meta \chant.vIII.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melodyvIII {\verba.vIII} +>> +vIIIFullScore = << + {\vIIIVocalScore} + \new StaffGroup << + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice <<\voiceOne \chant.vIII.meta \chant.vIII.S>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.vIII.meta \chant.vIII.A>> + >> + \new GregorianTranscriptionStaff << + \clef bass + \new GregorianTranscriptionVoice <<\voiceOne \chant.vIII.meta \chant.vIII.T>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.vIII.meta \chant.vIII.B>> + >> + >> +>> +vIVVocalScore = \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melodyvIV" <<\chant.vIV.meta \chant.vIV.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melodyvIV {\verba.vIV} +>> +vIVFullScore = << + {\vIVVocalScore} + \new StaffGroup << + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice <<\voiceOne \chant.vIV.meta \chant.vIV.S>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.vIV.meta \chant.vIV.A>> + >> + \new GregorianTranscriptionStaff << + \clef bass + \new GregorianTranscriptionVoice <<\voiceOne \chant.vIV.meta \chant.vIV.T>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.vIV.meta \chant.vIV.B>> + >> + >> +>> diff --git a/rorate_modern/table.tex b/rorate_modern/table.tex new file mode 100644 index 0000000..127ce0f --- /dev/null +++ b/rorate_modern/table.tex @@ -0,0 +1,34 @@ +\bgroup% +\topskip=0pt +\LTpre=0pt +\raggedbottom% +\begin{longtable}{@{}L} +\endlastfoot% +\textit{\VA{Tauet Himmel, von oben, +ihr Wolken, regnet den Gerechten. Die Erde öffne sich und sprieße den Retter hervor.}}\\ +\textit{Zürne nicht länger, Herr, +nicht länger gedenke unserer Missetaten. +Siehe, die Heilige Stadt ist zur Wüste geworden, +Zion ist zur Wüste geworden. +Jerusalem ist verödet, +das Haus deiner Heiligung und deiner Herrlichkeit, +wo dich gepriesen haben unsere Väter. }\\ +\textit{Wir haben gesündigt und sind unrein geworden +und sind gefallen wie ein Blatt, +und unsere Missetaten haben uns wie der Wind fortgetragen. +du hast dein Antlitz verborgen vor uns +und uns zerschmettert durch die Wucht unserer Schuld.}\\ +\textit{Sieh an, Herr, die Betrübnis deines Volkes, +und sende, den du senden willst. +Sende aus das Lamm, den Beherrscher der Erde, +vom Felsen der Wüste zum Berg der Tochter Zion, +dass es hinwegnehme das Joch unserer Knechtschaft.}\\ +\textit{Tröstet, tröstet, mein Volk! +Bald wird kommen dein Heil. +Warum verzehrst du dich in Trauer, +weil sich erneuert hat dein Schmerz? +Ich werde dich retten, fürchte dich nicht. +Denn ich bin der Herr, dein Gott, +der Heilige Israels, dein Erlöser}\\ +\end{longtable} +\egroup% diff --git a/sagt_an_wer_ist_doch_diese/assignments.tt b/sagt_an_wer_ist_doch_diese/assignments.tt new file mode 100644 index 0000000..b929ce6 --- /dev/null +++ b/sagt_an_wer_ist_doch_diese/assignments.tt @@ -0,0 +1,3 @@ +[% + congregation = 'freie_lieder/sagt_an_wer_ist_doch_diese_lyrics/sagt_an_wer_ist_doch_diese_lyrics.ly'; +-%] diff --git a/sagt_an_wer_ist_doch_diese/sagt_an_wer_ist_doch_diese.ly b/sagt_an_wer_ist_doch_diese/sagt_an_wer_ist_doch_diese.ly new file mode 100644 index 0000000..c7153b5 --- /dev/null +++ b/sagt_an_wer_ist_doch_diese/sagt_an_wer_ist_doch_diese.ly @@ -0,0 +1,71 @@ +\version "2.22.1" +\language deutsch +%GL 531 + +\include "../../../lilypond_songsheet_paper.ly" +melody = \relative { + \key c \major + \time 4/4 + \partial 4 + \repeat volta 2 {c'8 (d) | e4 e g d | e2 c4 c' | h c a4. g8 | 2 r4 } + g | c g a g8 (f) | e2 4 d | e8 (f) g4 f e | d2 4 g | e f d4. c8 | 2. \bar "|." +} +stropheEins = \lyricmode { + \set stanza = "1." + Sagt an, wer ist doch die -- se, + die auf am Him -- mel geht, + Sie kommt her -- vor von fer -- ne, + es schmückt sie Mond und Ster -- ne, + die Braut von Na -- za -- ret. +} +stropheEinsWDH = \lyricmode { + die ü -- berm Pa -- ra -- die -- se + als Mor -- gen -- rö -- te steht? +} +stropheDrei = \lyricmode { + \set stanza = "3." + O wohl dem Land, o wohl der Stadt, + so die -- sen Kö -- nig bei sich hat. + Wohl al -- len Her -- zen ins -- ge -- mein, + da die -- ser Kö -- nig zie -- het -- ein. + Er ist die rech -- te Freu -- den -- sonn, + bringt mit sich lau -- ter Freud und Wonn. + Ge -- lo -- bet sei mein Gott, + mein Trö -- ster früh und spat. +} +stropheVier = \lyricmode { + \set stanza = "4." + Macht hoch die Tür, die Tor macht weit, + eur Herz zum Tem -- pel zu -- be -- reit'. + Die Zweig -- lein der Gott -- se -- lig -- keit + steckt auf mit An -- dacht, Lust und Freud; + so kommt der Kö -- nig auch zu euch, + ja Heil und Le -- ben mit zu -- gleich. + Ge -- lo -- bet sei mein Gott, + voll Rat, voll Tat, voll Gnad. +} +stropheFuenf = \lyricmode { + \set stanza = "5." + Komm, o mein Hei -- land \markup{\smallCaps Je } -- \markup{\smallCaps su } Christ, + meins Her -- zens Tür Dir of -- fen ist. + Ach zieh mit Dei -- ner Gna -- de ein, + Dein Freund -- lich -- keit auch uns er -- schein. + Dein heil -- ger Geist uns führ und leit + den Weg zur ew -- gen Se -- lig -- keit. + Dem Na -- men Dein, o \markup{\smallCaps Herr,} + sei e -- wig Preis und Ehr. +} + +\score{ + \new Staff << + \new Voice = "melody" \melody + \new Lyrics \lyricsto melody \stropheEins + \new Lyrics \lyricsto melody \stropheEinsWDH + >> + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/sagt_an_wer_ist_doch_diese/sagt_an_wer_ist_doch_diese_lyrics.tt b/sagt_an_wer_ist_doch_diese/sagt_an_wer_ist_doch_diese_lyrics.tt new file mode 100644 index 0000000..08e076b --- /dev/null +++ b/sagt_an_wer_ist_doch_diese/sagt_an_wer_ist_doch_diese_lyrics.tt @@ -0,0 +1,26 @@ +\song{[% purpose %]}{Sagt an, wer ist doch diese}{% +/St{1}{% +Sagt an, wer ist doch diese, / +die auf am Himmel geht, / +die überm Paradiese als Morgenröte steht? / +Sie kommt hervor von ferne, / +es schmückt sie Mond und Sterne, / +die Braut von Nazaret} +\St{2}{% +Sie ist die reinste Rose, / +ganz schön und auserwählt, / +die Magd, die makellose, / +die sich der Herr vermählt. / +O eilet sie zu schauen, / +die schönste aller Frauen, / +die Freude aller Welt.} +\St{3}{% +Sie strahlt im Tugendkleide, / +kein Engel gleichet ihr; / +die Reinheit ihr Geschmeide, / +die Demut ihre Zier, / +ein Blumengart, verschlossen, / +mit Himmelstau begossen, / +so blüht sie für und für. +} +} diff --git a/sankt_michael/assignments.tt b/sankt_michael/assignments.tt new file mode 100644 index 0000000..a756f2f --- /dev/null +++ b/sankt_michael/assignments.tt @@ -0,0 +1,3 @@ +[% + scores.congregation = 'freie_lieder/sankt_michael/sankt_michael.ly'; +-%] diff --git a/sankt_michael/sankt_michael.ly b/sankt_michael/sankt_michael.ly new file mode 100644 index 0000000..e3000ed --- /dev/null +++ b/sankt_michael/sankt_michael.ly @@ -0,0 +1,66 @@ +\version "2.22.2" +\language deutsch +%GL 275 + +\include "../../../lilypond_songsheet_paper.ly" +melody = \fixed c' { + \key e \minor + \time 6/4 + \partial 1 + e4 2 fis4 | g2 4 a2 4 | h2 + g4 a2 4 | h2 \breathe + 4 2 cis'4 | d'2 h4 h2 a4 | g2 \breathe + h4 a2 g4 | fis e h a2 g4 | fis e g a2 fis4 | e2 \bar "|." +} +Lyrics.I = \lyricmode { + \set stanza = "1." + Un -- ü -- ber wind -- lich star -- ker Held, + Sankt Mi -- cha -- el! + komm uns zu Hilf', zieh' mit zu Feld! + \set stanza = "1.=5." + Hilf uns im Strei -- te, + zum Sieg uns lei --te, + Sankt Mi -- cha -- el! +} +Lyrics.II = \lyricmode { + \set stanza = "2." + Die Kirch die an -- be -- foh -- len ist; + _ _ _ _ + du un -- ser Schutz und Schirm -- herr bist. +} +Lyrics.III = \lyricmode { + \set stanza = "3." + Du bist der himm -- lisch Ban -- ner -- herr; + _ _ _ _ + die En -- gel sind dein Kö -- nigs -- heer. +} +Lyrics.IV = \lyricmode { + \set stanza = "4." + Den Dra -- chen du er -- grif -- fen hast; + _ _ _ _ + und un -- ter dei -- nen Fuß ge -- fasst. +} +Lyrics.V = \lyricmode { + \set stanza = "5." + Be -- schütz' mit dei -- nem Schild und Schwert; + _ _ _ _ + die Kirch', den Hir -- ten und die Herd'. +} +\score { + << + \new Staff { + \new Voice = "melody" \melody + } + \new Lyrics \lyricsto "melody" {\Lyrics.I} + \new Lyrics \lyricsto "melody" {\Lyrics.II} + \new Lyrics \lyricsto "melody" {\Lyrics.III} + \new Lyrics \lyricsto "melody" {\Lyrics.IV} + \new Lyrics \lyricsto "melody" {\Lyrics.V} + >> + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/segne_du_maria/assignments.tt b/segne_du_maria/assignments.tt new file mode 100644 index 0000000..39c2c1c --- /dev/null +++ b/segne_du_maria/assignments.tt @@ -0,0 +1,4 @@ +[% + title = 'Segne du Maria'; + scores.congregation = 'freie_lieder/segne_du_maria/segne_du_maria.ly'; +-%] diff --git a/segne_du_maria/segne_du_maria.ly b/segne_du_maria/segne_du_maria.ly new file mode 100644 index 0000000..3bb3d0f --- /dev/null +++ b/segne_du_maria/segne_du_maria.ly @@ -0,0 +1,68 @@ +\version "2.22.1" +\language deutsch +% GL 218 + +\include "../../../lilypond_songsheet_paper.ly" +melody = \fixed c' { + \key c \major + \time 4/4 + g4. f8 e4 g | c'2 a | g4. a8 g4 d | e2. r4 + g4. f8 e4 g | c'2 h | a4 e fis4. 8 | g2. r4 + d4. 8 e4 f | g2 e | f4. g8 a4 f | d2. r4 + e4 g c' h | a4.( g8) f2 | + e4 g e4. d8 | g2. r4 + a4. 8 d'4 c' | h4.( a8) g2 | + d4 f e4. d8 | c1 \bar "|." +} +stropheEins = \lyricmode { + \set stanza = "1." + Seg -- ne du, \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a} + seg -- ne mich, dein Kind, + dass ich hier den Frie -- den, + dort den Him -- mel find! + Seg -- ne all mein Den -- ken, + seg -- ne all mein Tun, + \repeat unfold 2 { + lass in dei -- nem Se -- gen + Tag und Nacht mich ruhn! + } +} +stropheZwei = \lyricmode { + \set stanza = "2." + Seg -- ne du, \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a} + al -- le, die mir lieb, + dei -- nen Mut -- ter -- se -- gen + ih -- nen täg -- lich gib! + Dei -- ne Mut -- ter -- hän -- de, + breit auf al -- le aus, + \repeat unfold 2 { + seg -- ne al -- le Her -- zen, + seg -- ne je -- des Haus! } +} +stropheDrei = \lyricmode { + \set stanza = "3." + Seg -- ne du, \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a} + uns -- re letz -- te Stund! + Sü -- ße Tros -- tes -- wor -- te + flüs -- tre dann der Mund! + Dei -- ne Hand, die lin -- de, + drück das Aug uns zu, + \repeat unfold 2 { + bleib im Tod und Le -- ben + un -- ser Se -- gen du!} +} + +\score{ + \new Staff << + \new Voice = "melody" \melody + \new Lyrics \lyricsto melody \stropheEins + \new Lyrics \lyricsto melody \stropheZwei + \new Lyrics \lyricsto melody \stropheDrei + >> + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/selig_wem_christus/assignments.tt b/selig_wem_christus/assignments.tt new file mode 100644 index 0000000..909f1fc --- /dev/null +++ b/selig_wem_christus/assignments.tt @@ -0,0 +1,3 @@ +[% + scores.congregation = 'freie_lieder/selig_wem_christus/selig_wem_christus.ly'; +-%] diff --git a/selig_wem_christus/selig_wem_christus.ly b/selig_wem_christus/selig_wem_christus.ly new file mode 100644 index 0000000..b920161 --- /dev/null +++ b/selig_wem_christus/selig_wem_christus.ly @@ -0,0 +1,59 @@ +\version "2.22.2" +\language deutsch +%GL 275 + +\include "../../../lilypond_songsheet_paper.ly" +melody = \fixed c' { + \key c \major + \time 4/4 + g2 e4 f | e (d) c2 | e4 f g g | a2 g \breathe | + g a4 h c'2 g | c'4 h a h | a2 g \breathe | + c'2 g4 a | g (f) e2 | f4 e f g | f (e) d2 \breathe | + g c4 f | e2 (d) | c1 \bar "|." +} +Lyrics.I = \lyricmode { + \set stanza = "1." + Se -- lig, wem Chri -- stus auf dem Weg be -- geg -- net, + um ihn zu ru -- fen, al -- les zu ver -- las -- sen, + sein Kreuz zu tra -- gen und in sei -- ner Kir -- che + für ihn zu wir -- ken. +} +Lyrics.II = \lyricmode { + \set stanza = "2." + Bei ihm ist Chri -- stus, stärkt ihn in der Wü -- ste, + schenkt ihm durch Lei -- den An -- teil an der Freu -- de. + Und sei -- ne Jün -- ger spü -- ren Chri -- sti Lie -- be + in sei -- ner Nä -- he. +} +Lyrics.III = \lyricmode { + \set stanza = "3." + Durch sei -- ne Jün -- ger spricht zu uns der Mei -- ster, + ruft uns zur Um -- kehr, spen -- det Licht und Hoff -- nung. + In ih -- ren Ta -- ten wird die Bot -- schaft Chri -- sti + für uns le -- ben -- dig. +} +Lyrics.IV = \lyricmode { + \set stanza = "4." + Va -- ter im Him -- mel, hei -- lig ist Dein Na -- me, + Dein Reich wird kom -- men, das Dein Sohn ver -- hei -- ßen. + Hilf uns, im Geis -- te ihm den Weg be -- rei -- ten, + als Dei -- ne bo -- ten. +} + +\score { + << + \new Staff { + \new Voice = "melody" \melody + } + \new Lyrics \lyricsto "melody" {\Lyrics.I} + \new Lyrics \lyricsto "melody" {\Lyrics.II} + \new Lyrics \lyricsto "melody" {\Lyrics.III} + \new Lyrics \lyricsto "melody" {\Lyrics.IV} + >> + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/tauet_himmel/assignments.tt b/tauet_himmel/assignments.tt new file mode 100644 index 0000000..9e75fe1 --- /dev/null +++ b/tauet_himmel/assignments.tt @@ -0,0 +1,3 @@ +[% + scores.congregation = 'freie_lieder/tauet_himmel/tauet_himmel.ly'; +-%] diff --git a/tauet_himmel/tauet_himmel.ly b/tauet_himmel/tauet_himmel.ly new file mode 100644 index 0000000..045c31f --- /dev/null +++ b/tauet_himmel/tauet_himmel.ly @@ -0,0 +1,66 @@ +\version "2.22.1" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +melody = \relative { + \key f \major + \time 3/4 + \partial 4 + f'8 f | 4 a g8 f | g4 g \breathe a8 b | + c4 d8 (b) a g | f4 r f8 8 | 4 a g8 f | + g4 g \breathe a8 b | c4 d8 (b) a g | f4 r a8 b| + c4 g a8 f | g (e) c4 \breathe a'8 b | c4 g + a8 f | g (e) c4 \breathe f8 8 | 4 a g8 f | + g2 \breathe a8 b | c4 d8 (b) a g | f4 r \bar "|." +} +stropheEins = \lyricmode { + \set stanza = "1." + „Tau -- et, Him -- mel, den Ge -- rech -- ten, Wol -- ken, + reg -- net ihn he -- rab!“, rief das Volk in ban -- gen + Näch -- ten, dem Gott die Ver -- hei -- ßung gab, einst den + Ret -- ter selbst zu se -- hen und zum Him -- mel + ein -- zu -- ge -- hen; denn ver -- schlos -- sen war das + Tor, bis der Hei -- land trat her -- vor. +} +stropheZwei = \lyricmode { + \set stanza = "2." + Voll Er -- bar -- men hört das Fle -- hen Gott auf + ho -- hem Him -- mels -- thron: Al -- le Men -- schen sol -- len + se -- hen Got -- tes Heil in sei -- nem Sohn. Got -- tes + En -- gel eilt her -- nie -- der, kehrt mit die -- ser + Ant -- wort wie -- der: „Sieh, ich bin des Her -- ren + Magd, mir ge -- scheh, wie du ge -- sagt.“ +} +stropheDrei = \lyricmode { + \set stanza = "3." + Ei -- nen Zu -- ruf hör ich schal -- len: „Sün -- der, + wacht vom Schlum -- mer auf! Denn es naht das Heil uns + al -- len, Nacht ist Fort, der Tag im Lauf! O, dann + weg mit al -- len Ta -- ten, die die Nacht zur + Mut -- ter hat -- ten! Wan -- delt auf des Lich -- tes + Bahn, zie -- het \markup{\smallCaps Je} -- \markup{\smallCaps sus} Chris -- tus an.“ +} +stropheVier = \lyricmode { + \set stanza = "4." + Und als Mensch zu Men -- schen -- kin -- dern kommt des + ew -- gen Va -- ters Sohn; Licht und Heil bringt er den + Sün -- dern, Frie -- den von des Him -- mels Thron. Er -- de + jauch -- ze auf in Won -- ne bei dem Strahl der + neu -- en Son -- ne: Bald er -- fül -- let ist die + Zeit. Macht ihm eu -- er Herz be -- reit! +} + +\score{ + \new Staff << + \new Voice = "melody" \melody + \new Lyrics \lyricsto melody \stropheEins + \new Lyrics \lyricsto melody \stropheZwei + \new Lyrics \lyricsto melody \stropheDrei + \new Lyrics \lyricsto melody \stropheVier + >> + \layout { + \context { + \Score + \omit BarNumber + } +} diff --git a/telemann_ich_will_den_herrn_loben/assignments.tt b/telemann_ich_will_den_herrn_loben/assignments.tt new file mode 100644 index 0000000..c0482ab --- /dev/null +++ b/telemann_ich_will_den_herrn_loben/assignments.tt @@ -0,0 +1,4 @@ +[% + scores.congregation = 'freie_lieder/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben.ly'; + credits.TM = 'Georg Philipp Telemann'; +-%] diff --git a/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben.ly b/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben.ly new file mode 100644 index 0000000..01fa9e3 --- /dev/null +++ b/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben.ly @@ -0,0 +1,15 @@ +\version "2.24.4" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "telemann_ich_will_den_herrn_loben_vars.ly" + +\score{ + \VocalScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben_piano.ly b/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben_piano.ly new file mode 100644 index 0000000..b0d56da --- /dev/null +++ b/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben_piano.ly @@ -0,0 +1,15 @@ +\version "2.24.4" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "telemann_ich_will_den_herrn_loben_vars.ly" + +\score{ + \PianoScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben_vars.ly b/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben_vars.ly new file mode 100644 index 0000000..2222a5d --- /dev/null +++ b/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben_vars.ly @@ -0,0 +1,46 @@ +\version "2.24.4" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +meta = { + \key g \major + \time 4/4 + s1^\markup "1." + s1^\markup "2." + s1^\markup "3." +} +melody = \fixed c' { + r8 g g g a a16( h c'8 h16 a | h8 16 c' d'8) c'16( h) c'(h a g) fis4 | g + r c d | g8 g h g e' e' d' c' | h h16( c') d'8 c'16( h) a4 r8 + a | a g g4.( fis16 e) fis4 | + r8 d' h g c' c' c' h16( a) | h8 h g h a8.( g16) a4 | g \fermata + r8 e c e d d | g\fermata d' h g g4 fis | g2\fermata r2 +} +words = \lyricmode { + Ich will den Herrn lo -- ben al -- le -- zeit, + al -- le -- zeit, sein Lob soll im -- mer dar in mei -- nem Mun -- de sein, + in mei -- nem Mun -- de, + sein Lob, sein Lob soll im -- mer dar in mei -- nem Mun -- de sein, + in mei -- nem Mun -- de sein, in mei -- nem Mun -- de sein. +} + +VocalScore = << + \new Staff << + \meta + \new Voice = "melody" <<\voiceOne {\melody \bar "|."}>> + >> + \new Lyrics \lyricsto melody \words + >> + +PianoScore = << + \new Staff << + \meta + \new Voice = "melody" <<\voiceOne \melody>> + \new Voice <<\voiceTwo {R1 \melody s1 \bar "|."}>> + >> + \new Lyrics \lyricsto melody \words + \new Staff << + \meta + \new Voice <<{R1*2 \melody\bar "|."}>> + >> + >> diff --git a/tochter_zion/assignments.tt b/tochter_zion/assignments.tt new file mode 100644 index 0000000..5d28680 --- /dev/null +++ b/tochter_zion/assignments.tt @@ -0,0 +1,3 @@ +[% + scores.congregation = 'freie_lieder/tochter_zion/tochter_zion.ly'; +-%] diff --git a/tochter_zion/tochter_zion.ly b/tochter_zion/tochter_zion.ly new file mode 100644 index 0000000..f3fb230 --- /dev/null +++ b/tochter_zion/tochter_zion.ly @@ -0,0 +1,82 @@ +\version "2.22.1" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" + +global = { + \key d \major + \time 2/2 + s1*4 \breathe + s1*4 \bar "|." + s1*4 \breathe + s1*4 \bar "||" +} +Song.Voices.Soprano = \relative { + a'2 fis4. (g8) | a2 d, | e8 (fis g a g4) fis | e1 + fis8 (g a h a4) a | d2 a | g4 (fis e4.) d8 |\mark "Fine" 1 \bar "|." + fis8 ( e fis g fis4) 4 | e2 d | g4 (fis e) d | cis1 + d8 (cis d e d4) d | h'2 gis | a4 (h8 a gis4.) a8 |\mark "1-3 da capo al Fine" 1 +} +Song.Voices.Alto = \relative { + d'2 4. (cis8) | d2 a | cis8 (d e fis e4) d | cis1 + d2. 4| 2 2 | cis4 (d2) cis4 |d1 + d8 ( cis d e d4) 4 | cis2 h | e4 (d cis) h | ais1 + h8 (ais h cis h4) h | d2. 4 | cis4 (d8 cis h4) e |1 +} +Song.Voices.Tenor = \relative { + fis2 a4. (g8) | fis2 a | g4 (e a) a | 1 + 2. 4 | 2 fis | g4 (a2) g4 | fis1 + a2. 4 | g2 fis | ais4 (h g) fis | 1 + fis2. 4 | e2 h' | a4 (fis) h h | cis1 +} +Song.Voices.Bass = \relative { + d2 fis4. (e8) | d2 fis | e4. (d8 cis4) d | a1 + d8 (e fis a fis4) 4| 2 d | e4 (fis8 g a4) a, | d1 + 2. 4 | a2 h | cis4 (d e) h | fis'1 + h,2. a4 | gis2 e' | fis4 (d) e e | a,1 +} + +Song.Lyrics.I = \lyricmode { + \set stanza = "1." + Toch -- ter Zi -- on, freu -- e dich, + jauch -- ze laut, Je -- ru -- sa -- lem! + Sieh, -- dein Kö -- nig kommt zu dir, + ja er kommt, der Frie -- de -- fürst. +} +Song.Lyrics.II = \lyricmode { + \set stanza = "2." + Ho -- si -- an -- na, Da -- vids Sohn, + sei ge -- seg -- net dei -- nem Volk! + Grün -- de nun dein e -- wig Reich, + Ho -- si -- an -- na in der Höh! +} +Song.Lyrics.III = \lyricmode { + \set stanza = "3." + Ho -- si -- an -- na, Da -- vids Sohn, + sei -- ge -- grü -- ßet, Kö -- nig mild! + E -- wig steht Dein Frie -- dens -- thron, + Du, des ew -- gen Va -- ters Kind. +} + +\score{ + \new ChoirStaff << + \new Staff = "women" << + \new Voice = "Soprano" <<\voiceOne \global\Song.Voices.Soprano >> + \new Voice = "Alto" <<\voiceTwo \global\Song.Voices.Alto >> + \new Lyrics \lyricsto Soprano {\Song.Lyrics.I} + \new Lyrics \lyricsto Soprano {\Song.Lyrics.II} + \new Lyrics \lyricsto Soprano {\Song.Lyrics.III} + >> + \new Staff = "men" << + \clef bass + \new Voice = "Tenor" <<\voiceOne \global\Song.Voices.Tenor >> + \new Voice = "Bass" <<\voiceTwo \global\Song.Voices.Bass >> + >> + >> + \layout { + \context { + \Score + \omit BarNumber + } +} +} diff --git a/v_o_gott_komm_mir/assignments.tt b/v_o_gott_komm_mir/assignments.tt new file mode 100644 index 0000000..f6c114f --- /dev/null +++ b/v_o_gott_komm_mir/assignments.tt @@ -0,0 +1,6 @@ +[% + scores = { + congregation = 'freie_lieder/v_o_gott_komm_mir/v_o_gott_komm_mir_lz.ly' + leadsheet = 'freie_lieder/v_o_gott_komm_mir/v_o_gott_komm_mir_full.ly' + }; +-%] diff --git a/v_o_gott_komm_mir/v_o_gott_komm_mir_full.ly b/v_o_gott_komm_mir/v_o_gott_komm_mir_full.ly new file mode 100644 index 0000000..e8b684c --- /dev/null +++ b/v_o_gott_komm_mir/v_o_gott_komm_mir_full.ly @@ -0,0 +1,8 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "v_o_gott_komm_mir_vars.ly" +\include "gregorian.ly" + +\score { \FullScore } diff --git a/v_o_gott_komm_mir/v_o_gott_komm_mir_lz.ly b/v_o_gott_komm_mir/v_o_gott_komm_mir_lz.ly new file mode 100644 index 0000000..024a3dc --- /dev/null +++ b/v_o_gott_komm_mir/v_o_gott_komm_mir_lz.ly @@ -0,0 +1,10 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "v_o_gott_komm_mir_vars.ly" +\include "gregorian.ly" + +\score { + \VocalScore +} diff --git a/v_o_gott_komm_mir/v_o_gott_komm_mir_vars.ly b/v_o_gott_komm_mir/v_o_gott_komm_mir_vars.ly new file mode 100644 index 0000000..e093dc5 --- /dev/null +++ b/v_o_gott_komm_mir/v_o_gott_komm_mir_vars.ly @@ -0,0 +1,55 @@ +\version "2.24.3" +\language deutsch + +\include "gregorian.ly" +chant.meta = { + \key g \major + \set Score.timing = ##f +} +chant.cantus.I = \relative c'' { + g4 a g g g fis g +} +chant.cantus.II = {\chant.cantus.I +\divisioMaior +\relative c'' { + g\breve g4 g e g + \divisioMaior + g\breve a4 g g + \divisioMinima + g\breve g4 g e g fis \divisioMaxima + g a g( fis) fis \finalis +} +} +verba.I = \lyricmode { + \set stanza = "V" + O Gott, komm mir zu Hil -- fe +} +verba.II = \lyricmode { + \set stanza = "A" + Herr, ei -- le mir zu hel -- fen. + \once \override LyricText.self-alignment-X = #LEFT + "Ehre sei dem Vater und dem Sohn und dem" + Hei -- li -- gen Geist. + \once \override LyricText.self-alignment-X = #LEFT + "Wie im Anfang, so auch jetzt und" al -- le -- zeit + \once \override LyricText.self-alignment-X = #LEFT + "und in" E -- wig -- keit. A -- men. + Hal -- le -- lu -- ja. +} + +VocalScore = <<\new GregorianTranscriptionStaff << + \chant.meta + { + \new GregorianTranscriptionVoice = "melodyI" {\chant.cantus.I} + \divisioMaxima + \new GregorianTranscriptionVoice = "melodyII" {\chant.cantus.II} + } +>> + \new GregorianTranscriptionLyrics << + \lyricsto melodyI {\verba.I} + \lyricsto melodyII {\verba.II} + >> + >> +FullScore = << + {\VocalScore} +>> diff --git a/veni_immanuel/assignments.tt b/veni_immanuel/assignments.tt new file mode 100644 index 0000000..bfb792a --- /dev/null +++ b/veni_immanuel/assignments.tt @@ -0,0 +1,7 @@ +[% + song_title = 'Veni Immanuel'; + scores = { + SATB = 'freie_lieder/veni_immanuel/veni_immanuel_de_SATB.ly' + congregation = 'freie_lieder/veni_immanuel/veni_immanuel_de_lz.ly' + }; +-%] diff --git a/veni_immanuel/o_come_o_come_emmanuel.tt b/veni_immanuel/o_come_o_come_emmanuel.tt new file mode 100644 index 0000000..e1ac1b7 --- /dev/null +++ b/veni_immanuel/o_come_o_come_emmanuel.tt @@ -0,0 +1,7 @@ +\song{[% purpose %]}{O come, o come Emmanuel}{% + [% IF parts != '0' -%] + \lilypondfile{library/freie_lieder/veni_immanuel/o_come_o_come_emmanuel_leadsheet.ly}% + [% ELSE -%] + \lilypondfile{library/freie_lieder/veni_immanuel/o_come_o_come_emmanuel_lz.ly}% + [% END -%] +} diff --git a/veni_immanuel/o_come_o_come_emmanuel_leadsheet.ly b/veni_immanuel/o_come_o_come_emmanuel_leadsheet.ly new file mode 100644 index 0000000..69445e5 --- /dev/null +++ b/veni_immanuel/o_come_o_come_emmanuel_leadsheet.ly @@ -0,0 +1,17 @@ +\version "2.24.3" +\language deutsch + +%\header{title = "O Come, o come, Emmanuel" +%composer = "Matt Maher"} +\include "../../../lilypond_musician_score_paper.ly" +\include "veni_immanuel_vars.ly" + +\score{ + \Song.EN.Maher.LeadsheetScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/veni_immanuel/o_come_o_come_emmanuel_lz.ly b/veni_immanuel/o_come_o_come_emmanuel_lz.ly new file mode 100644 index 0000000..a0dbda5 --- /dev/null +++ b/veni_immanuel/o_come_o_come_emmanuel_lz.ly @@ -0,0 +1,15 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "veni_immanuel_vars.ly" + +\score{ + \Song.EN.Maher.MelodyScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/veni_immanuel/veni_immanuel_de_SATB.ly b/veni_immanuel/veni_immanuel_de_SATB.ly new file mode 100644 index 0000000..3a78dd0 --- /dev/null +++ b/veni_immanuel/veni_immanuel_de_SATB.ly @@ -0,0 +1,14 @@ +\version "2.24.3" +\language deutsch + +\include "../../../lilypond_musician_score_paper.ly" +\include "veni_immanuel_vars.ly" + +Song.Meta = { + \key d \minor + \time 2/2 + \partial 4 +} +\score{ + \Song.DE.SATBScore +} diff --git a/veni_immanuel/veni_immanuel_de_lz.ly b/veni_immanuel/veni_immanuel_de_lz.ly new file mode 100644 index 0000000..e053cad --- /dev/null +++ b/veni_immanuel/veni_immanuel_de_lz.ly @@ -0,0 +1,15 @@ +\version "2.24.2" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "veni_immanuel_vars.ly" + +\score{ + \Song.DE.MelodyScore + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/veni_immanuel/veni_immanuel_hope_lz.ly b/veni_immanuel/veni_immanuel_hope_lz.ly new file mode 100644 index 0000000..379262b --- /dev/null +++ b/veni_immanuel/veni_immanuel_hope_lz.ly @@ -0,0 +1,53 @@ +\version "2.22.4" +\language deutsch + +\include "../../../lilypond_songsheet_paper.ly" +\include "veni_immanuel_vars.ly" + +\score{ +<< + \new Staff { + \key d \minor + \time 2/2 + \partial 4 + \fixed c' { + \repeat volta 3 { + \new Voice = "verse" {\Song.Voice.Verse} + \new Voice = "chorus" {\Song.Voice.Chorus} + \alternative { + \volta 2 {\new Voice = "MaherChorus" \repeat volta 2 {\Song.Voice.MaherChorus + \Song.Voice.Chorus \bar ":|."}} + } + }}} + \new Lyrics << + \lyricsto "verse" {\Song.Lyrics.English.VerseI} + \lyricsto "chorus" {\Song.Lyrics.English.Chorus} + \lyricsto "MaherChorus" {\Song.Lyrics.English.MaherChorus \Song.Lyrics.English.Chorus} + >> + \new Lyrics \lyricsto "verse" {\Song.Lyrics.English.VerseII} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.English.VerseIII} + >> + % Deutscher Text +% << +% \new Staff { +% \key d \minor +% \time 2/2 +% \partial 4 +% \fixed c' { +% \new Voice = "verse" {\Song.Voice.Verse} +% \new Voice = "chorus" {\Song.Voice.Chorus \bar "|."} +% }} +% \new Lyrics << +% \lyricsto "verse" {\Song.Lyrics.German.VerseI } +% \lyricsto "chorus" {\Song.Lyrics.Latin.Chorus} +% >> +% \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseII} +% \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseIII} +% >> + \layout { + \context { + \Score + \omit BarNumber + } + } +} diff --git a/veni_immanuel/veni_immanuel_vars.ly b/veni_immanuel/veni_immanuel_vars.ly new file mode 100644 index 0000000..d66127d --- /dev/null +++ b/veni_immanuel/veni_immanuel_vars.ly @@ -0,0 +1,328 @@ +\version "2.22.4" +\language deutsch + +Song.Voice.Verse = \fixed c' { + d4 | f a a a | g (b a) g | f2 r4 + g | a f d f | g (e d) c | d2 r4 + g | g d d e f2 (e4) d | c2 r4 + f | g a a a | g (b a) g | f2 r4 +} +Song.Voice.Chorus = \fixed c' { + c'4 | 2. a4 | 2. 4 | g (b a) g | f2 r4 + g | a f d f | g (e d) c d2. +} +Song.Voice.MaherChorus = { +\fixed c'' {\repeat unfold 2 { r8 c| d2. r8 c8 | +\set Score.repeatCommands = #'((volta #f)) +d4. c8 d4. c8| d2. r8 e8 | f4. e8 | d4 c4 a,2. r8 e8 | f4. e8 d4 c | e2. }} +} +Song.Voice.A = \fixed c'{ + \transpose g f { + h,4 e fis g g | fis( g4~ g8 fis) e4 | e2 r4 + fis g d e d | e( d8 c h,4) h, | c( h,) r4 + e8 d | c4 c h, d | d2. h,4 | h,2 r4 + h,4 | d d d g | fis( g~ 8 fis) e fis | e2 r4 + d4 | h( a2) g4 | fis2. g4 | fis( g~ 8 fis) e( fis) | g2 r4 + fis4 | g d e g | e( c h,) d | h,2. + } +} + +Song.Voice.T = \fixed c { + \transpose g f { + g4 | h d' d' d' | d'( e'~ 8 d') c'4 | h2 r4 + d'4 | d' d' g h | c'( a g) fis | g2 r4 + a4 | a a g a | h2( a4) g | fis2 r4 + e4 | fis fis g d' | d'( e' h) c' | h2 r4 + d'4 | g'( fis'2) e'4 | dis'2. d'4 | d'( e' d') c' | h2 r4 + d'4 | d' h e' h | c'( a h) a | h2. + }} + +Song.Voice.B = \fixed c { + \transpose g f { + e4 | e d g g | d( c e) a | e2 r4 + d4 | g h, c h, | a,( d e) h, | e2 r4 + c8( h,) a,4 c e d | g,2( d4) e | h,2 r4 + e4 d h, g, g | d( c e) a | e2 r4 + d4 | d2. e'4 | h2. g4 | d( c g) a | e2 r4 + d4 | g h c' h | a2( g4) fis | e2. + }} +Song.Lyrics.English.VerseI = \lyricmode { + \set stanza = "1." + O come, o come, Em -- ma -- nu -- el and ran -- som cap -- tive Is -- ra -- el that mourns in lone -- ly ex -- ile here un -- til the son of God ap -- pear +} +Song.Lyrics.English.VerseII = \lyricmode { + \set stanza = "2." + O come Thou day -- spring come and cheer our spi -- rits by Thine ad -- vent here dis -- perse the gloo -- my clouds of night and deaths dark sha -- dows put to flight +} +Song.Lyrics.English.VerseIII = \lyricmode { + \set stanza = "3." + O come, Thou key of Da -- vid, come and open wide our hea -- ven -- ly home make safe the way that leads on high and close the path to mi -- se -- ry +} +Song.Lyrics.English.Chorus = \lyricmode {Re -- joice, re -- joice! Em -- ma -- nu -- el shall come to thee, o Is -- ra -- el} +Song.Lyrics.English.MaherChorus = \lyricmode {Re -- joice, +a -- gain, I say, re -- joice +for un -- to us is born +the sa -- viour of the world +Take heart, +o wea -- ry soul, take heart, +for help is on it's way, +and ho -- ly is his name} +Song.Lyrics.Latin.Chorus = \lyricmode { + \set stanza = "Kv." + Gau -- de, gau -- de, Im -- ma -- nu -- el nas -- ce -- tur -- pro te, Is -- ra -- el +} +Song.Lyrics.German.GLVerseI = \lyricmode { + \set stanza = "1." + Herr, send her -- ab uns dei -- nen Sohn, + die Völ -- ker har -- ren lan -- ge schon. + Send ihn, den Du ver -- hei -- ßen hast, + zu til -- gen uns -- rer Sün -- den Last. +} +Song.Lyrics.German.GLVerseII = \lyricmode { + \set stanza = "2." + O Weis -- het aus des Höch -- sten Mund, + die du um -- spannst des Welt -- alls Rund + und al -- les lenkst mit Kraft und Rat: + Komm, wei -- se uns der Klug -- heit Pfad. +} +Song.Lyrics.German.GLVerseIII = \lyricmode { + \set stanza = "3." + O A -- do -- nai, du star -- ker Gott, + du ga -- best Mo -- se dein Ge -- bot + auf Si -- na -- i im Flam -- men -- schein: + Streck aus den Arm, uns zu be -- frein +} +Song.Lyrics.German.GLVerseIV = \lyricmode { + \set stanza = "4." + O Wur -- zel Jes -- se, \markup{\smallCaps Je} -- \markup{\smallCaps su} Christ, + ein Zei -- chen al -- ler Welt Du bist, + das al -- len Völ -- kern Heil ver -- spricht: + Eil uns zu Hil -- fe, säu -- me nicht. +} +Song.Lyrics.German.GLVerseV = \lyricmode { + \set stanza = "5." + O Schlüs -- sel Da -- vids, des -- sen Kraft + be -- frei -- en kann aus ew' -- ger Haft: + Komm, für' uns aus des To -- des Nacht, + wo -- hin die Sün -- de uns gebracht. +} +Song.Lyrics.German.GLVerseVI = \lyricmode { + \set stanza = "6." + O Auf -- gang, Glanz der E -- wig -- keit, + Du Son -- ne der Ge -- rech -- tig -- keit + Er -- leuch -- te doch mit Dei -- ner Pracht + die Fin -- ster -- nis und To -- des -- nacht. +} +Song.Lyrics.German.GLVerseVII = \lyricmode { + \set stanza = "7." + O Kö -- nig, Sehn -- sucht al -- ler Welt, + du Eck -- stein, der sie eint und hält: + O komm zu uns, o Herr -- scher mild, + und ret -- te uns, dein E -- ben -- bild. +} +Song.Lyrics.German.GLVerseVIII = \lyricmode { + \set stanza = "8." + O „Gott mit uns“, Im -- ma -- nu -- el, + Du Fürst des Haus -- es Is -- ra -- el, + o Hoff -- nung al -- ler Völ -- ker Du: + Komm, führ' uns Dei -- nem Frie -- den zu. +} +Song.Lyrics.German.GLVerseIX = \lyricmode { + \set stanza = "9." + Herr, wir ver -- trau -- en auf Dein Wort; + es wirkt durch al -- le Zei -- ten fort. + Er -- lö -- se uns, Du bist ge -- treu. + Komm, schaf -- fe Erd' und Him -- mel neu. +} +Song.Lyrics.German.VerseI = \lyricmode { + \set stanza = "1." + O komm, o komm, Em -- ma -- nu -- el, + nach Dir seht sich Dein Is -- ra -- el! + In uns -- rer Ar -- mut war -- ten wir + und schau -- en hof -- fend aus nach Dir. +} +Song.Lyrics.German.VerseII = \lyricmode { + \set stanza = "2." + O komm, Du wah -- res Licht der Welt, + das al -- le Fin -- ster -- nis er -- hellt! + Du kün -- dest Got -- tes Heil und Plan; + o führ uns auf des Lich -- tes Bahn! +} +Song.Lyrics.German.VerseIII = \lyricmode { + \set stanza = "3." + O komm, des Frie -- dens Un -- ter -- pfand, + num Woh -- nung in der Men -- schen Land! + Vor Dir ist nie -- mand oh -- ne Schuld; + o bring uns Dei -- nes Va -- ters Huld! +} +Song.Lyrics.German.VerseIV = \lyricmode { + \set stanza = "4." + O komm, Er -- lö -- ser, Got -- tes Sohn, + und bring uns Gnad von Got -- tes Thron! + Du weißt um uns -- res Her -- zens not; + o gib Dich uns, le -- ben -- dig Brot! +} +Song.Lyrics.German.VerseV = \lyricmode { + \set stanza = "5." + O komm, o komm, Du Got -- tes Wort, + in al -- ler Not sei un -- ser Hort! + Der Va -- ter gab die Herr -- schaft Dir; + auf Dei -- ne Treu -- e bau -- en wir. +} +Song.Lyrics.German.VerseVI = \lyricmode { + \set stanza = "6." + O komm, o komm, Em -- ma -- nu -- el, + be -- frei Dein ar -- mes Is -- ra -- el! + Du Ret -- ter de -- rer, die ver -- irrt, + er -- wei -- se Dich als gu -- ter Hirt! +} + +Song.Chords.Prelude = \chordmode { + s4 \repeat unfold 2 {cis1:m | h | a | s } +} +Song.Chords.Verse = \chordmode { + cis1:m | h | a + cis1:m | h | a + fis:m | e | h + cis1:m | h | a +} +Song.Chords.Chorus = \chordmode { + h1 | e | fis:m | a | + cis:m | h | cis:m +} +Song.Chords.Interlude = \chordmode { + cis:m | h | a2. +} +Song.Chords.MaherChorus = \chordmode { + s4 + \repeat unfold 4 { + a1 | s | cis:m | s | e | s | h + \alternative { + \volta 2 { + \Song.Chords.Chorus + } + } + } +} + +Song.DE.MelodyScore = << + \new Staff { + \key d \minor + \time 2/2 + \fixed c' { + \new Voice = "verse" {\partial 4 \Song.Voice.Verse} + \new Voice = "chorus" {\Song.Voice.Chorus \bar "|."} + }} + \new Lyrics << + \lyricsto "verse" {\Song.Lyrics.German.VerseI } + \lyricsto "chorus" {\Song.Lyrics.Latin.Chorus} + >> + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseII} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseIII} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseIV} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseV} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseVI} + >> + + Song.DE.SATBScore = \new ChoirStaff << + \new Staff \with { + \consists Merge_rests_engraver + } << + \partial 4 + {\voiceOne + \new Voice = "verse" {\Song.Voice.Verse} + \new Voice = "chorus" {\Song.Voice.Chorus \bar "|."} + } + {\voiceTwo \Song.Voice.A} + >> + \new Lyrics << + \lyricsto "verse" {\Song.Lyrics.German.VerseI } + \lyricsto "chorus" {\Song.Lyrics.Latin.Chorus} + >> + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseII} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseIII} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseIV} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseV} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseVI} + \new Staff \with { + \consists Merge_rests_engraver + } + << + \clef bass + \partial 4 + \new Voice <<\voiceOne \Song.Voice.T>> + \new Voice <<\voiceTwo \Song.Voice.B>> + >> + >> + + Song.EN.Maher.MelodyScore = << + \transpose d cis { + \new Staff { + \key d \minor + \time 2/2 + \partial 4 + \fixed c' { + \repeat segno 3 { + \new Voice = "verse" {\Song.Voice.Verse} + \new Voice = "chorus" {\Song.Voice.Chorus} + \fine + \alternative { + {} + {\new Voice = "MaherChorus" \repeat volta 2 {\Song.Voice.MaherChorus + \alternative { + {\Song.Voice.Chorus} + {} + }}} + {} + } } } }} + \new Lyrics << + \lyricsto "verse" {\Song.Lyrics.English.VerseI} + \lyricsto "chorus" {\Song.Lyrics.English.Chorus} + \lyricsto "MaherChorus" {\Song.Lyrics.English.MaherChorus \Song.Lyrics.English.Chorus} + >> + \new Lyrics \lyricsto "verse" {\Song.Lyrics.English.VerseII} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.English.VerseIII} + >> + + Song.EN.Maher.LeadsheetScore = << + \new ChordNames { + \Song.Chords.Prelude + \Song.Chords.Verse + \Song.Chords.Chorus + \Song.Chords.Interlude + \Song.Chords.MaherChorus + \Song.Chords.Interlude + } + \transpose d cis { + \new Staff { + \key d \minor + \time 2/2 + \partial 4 + r4 R1*7 r2. + \fixed c' { + \repeat segno 3 { + \new Voice = "verse" {\Song.Voice.Verse} + \new Voice = "chorus" {\Song.Voice.Chorus} + \fine + \alternative { + {r4 R1*2 r2.} + {\new Voice = "MaherChorus" \repeat unfold 2 {\Song.Voice.MaherChorus + \alternative { + {\Song.Voice.Chorus} + {} + }}} + {r4 R1*2 r2. \bar "|."} + } } } }} + \new Lyrics << + \lyricsto "verse" {\Song.Lyrics.English.VerseI} + \lyricsto "chorus" {\Song.Lyrics.English.Chorus} + \lyricsto "MaherChorus" {\repeat unfold 2 { + \Song.Lyrics.English.MaherChorus + \alternative { + \volta 1 {\Song.Lyrics.English.Chorus} + }} + } + >> + \new Lyrics \lyricsto "verse" {\Song.Lyrics.English.VerseII} + \new Lyrics \lyricsto "verse" {\Song.Lyrics.English.VerseIII} +>> \ No newline at end of file