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,4 @@
[%
scores.congregation = 'freie_lieder/telemann_ich_will_den_herrn_loben/telemann_ich_will_den_herrn_loben.ly';
credits.TM = 'Georg Philipp Telemann';
-%]
@@ -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
}
}
}
@@ -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
}
}
}
@@ -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 "|."}>>
>>
>>