diff options
author | Erich Eckner <git@eckner.net> | 2014-09-04 10:59:12 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2014-09-04 10:59:12 +0200 |
commit | cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd (patch) | |
tree | 25be2d35abeec51d18d0204e199f3bdbf66826b1 /Geburtstagslied | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Geburtstagslied')
-rw-r--r-- | Geburtstagslied/Geburtstagslied.ly | 49 | ||||
-rw-r--r-- | Geburtstagslied/Geburtstagslied.mid | bin | 0 -> 2493 bytes | |||
-rw-r--r-- | Geburtstagslied/stimmen.ly | 100 | ||||
-rw-r--r-- | Geburtstagslied/texte.ly | 6 |
4 files changed, 155 insertions, 0 deletions
diff --git a/Geburtstagslied/Geburtstagslied.ly b/Geburtstagslied/Geburtstagslied.ly new file mode 100644 index 0000000..bf1cbc8 --- /dev/null +++ b/Geburtstagslied/Geburtstagslied.ly @@ -0,0 +1,49 @@ +\include "deutsch.ly" +\include "stimmen.ly" +\include "texte.ly" + +\pointAndClickOff + +% #(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist)) +% #(set-default-paper-size "kindle") + +\paper { + top-margin = 5 + print-all-headers = ##t +} + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t +% \new Staff << +% \set Staff.instrumentName = #"Alle" +% \new Voice = erste { \transpose c g { \global \ersteMelodie \bar "|." } } +% \new Voice = zweite { \transpose c g { \global \zweiteMelodie \bar "|." } } +% \new Voice = dritte { \transpose c g { \global \dritteMelodie \bar "|." } } +% \new Lyrics \lyricsto erste { \TextI } +% >> + \new Staff { + \set Staff.instrumentName = #"1" + \new Voice { \transpose c g { \global \ersteMelodie \bar "|." } } + } + \new Staff { + \set Staff.instrumentName = #"2" + \new Voice { \transpose c g { \global \zweiteMelodie \bar "|." } } + } + \new Staff { + \set Staff.instrumentName = #"3" + \new Voice { \transpose c g { \global \dritteMelodie \bar "|." } } + } + >> + \layout { + indent = #0 + } + \midi { \context { + \Score + tempoWholesPerMinute = #(ly:make-moment 50 2) + } } + \header { + title = "Geburtstagslied" + composer = ##f + } +} diff --git a/Geburtstagslied/Geburtstagslied.mid b/Geburtstagslied/Geburtstagslied.mid Binary files differnew file mode 100644 index 0000000..4babe6b --- /dev/null +++ b/Geburtstagslied/Geburtstagslied.mid diff --git a/Geburtstagslied/stimmen.ly b/Geburtstagslied/stimmen.ly new file mode 100644 index 0000000..6499c61 --- /dev/null +++ b/Geburtstagslied/stimmen.ly @@ -0,0 +1,100 @@ +global = { + \time 4/4 + \key c \major + \autoBeamOff + \partial 4 +} + +ersteMelodie = \relative g' { + g4 | + e e d d | + c c c g' | + a a f a | + g2. g4 | + a g a h | + c g g f | + e e d g | + c,2. + g'4 | + e e d d | + c c c g' | + a a f a | + g2. g4 | + a g a h | + c g g f | + e e d g | + c,2. + g'4 | + e e d d | + c c c g' | + a a f a | + g2. g4 | + a g a h | + c g g f | + e e d g | + c,2. +} + +zweiteMelodie = \relative e' { + d4 | + c c h h | + g g g d' | + f f c f | + e2. d4 | + f d f g | + g e e d | + c c h f' | + g,2. + + d'4 | + c c h h | + g a g d' | + e f d f | + e2( d4) e | + e e e f | + a e e c | + c c a d | + \tuplet 3/2 {a4( g f} e4) + + d'4 | + c c h h | + g g g d' | + f f c f | + e2. d4 | + f d f g | + g e e d | + c c h f' | + g,2. +} + +dritteMelodie = \relative h { + h4 | + g g g g | + e e e h' | + c c a c | + c2. h4 | + c h c d | + e c c g | + g g g d' | + e,2. + + h'4 | + a g g f | + e e e h' | + cis c h c | + d( c h) h | + c h c d | + e c h as | + a g f h | + g2. + + h4 | + g g g g | + e e e h' | + c c a c | + c2. h4 | + c h c d | + e c c g | + g g g d' | + e,2. +} diff --git a/Geburtstagslied/texte.ly b/Geburtstagslied/texte.ly new file mode 100644 index 0000000..5e40d48 --- /dev/null +++ b/Geburtstagslied/texte.ly @@ -0,0 +1,6 @@ +TextI = \lyricmode { + Weil heu -- te dein Ge -- burts -- tag ist, + da ha -- ben wir ge -- dacht, + wir sin -- gen dir ein schö -- nes Lied, + weil dir das Freu -- de macht. +} |