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
@@ -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"
};
-%]
@@ -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 -%]
}
@@ -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
}
}
}
@@ -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
}
}
}
@@ -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>>
>>
>>