initial commit

This commit is contained in:
2024-10-17 16:42:32 +02:00
parent b25433b567
commit 851607514a
119 changed files with 3666 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
[%
scores.congregation = 'freie_lieder/hallaluja_174_4/hallaluja_174_4.ly';
-%]
+19
View File
@@ -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 {
}
}
+14
View File
@@ -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
}
}
}
+54
View File
@@ -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>>
>>
>>