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
+20
View File
@@ -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
}
}
}
+15
View File
@@ -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
}
}
}
+48
View File
@@ -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>>
>>
>>
>>
>>
+7
View File
@@ -0,0 +1,7 @@
[%
song_title = 'Andachtsjodler';
scores = {
congregation = "freie_lieder/andachtsjodler/andachtsjodler_lz.ly"
SATB = "freie_lieder/andachtsjodler/andachtsjodler_SATB.ly"
};
%]