diff options
Diffstat (limited to 'Weihnachtslieder/Kling_Gloeckchen')
-rw-r--r-- | Weihnachtslieder/Kling_Gloeckchen/Kling_Gloeckchen.ly | 48 | ||||
-rw-r--r-- | Weihnachtslieder/Kling_Gloeckchen/stimmen.ly | 45 | ||||
-rw-r--r-- | Weihnachtslieder/Kling_Gloeckchen/texte.ly | 17 |
3 files changed, 110 insertions, 0 deletions
diff --git a/Weihnachtslieder/Kling_Gloeckchen/Kling_Gloeckchen.ly b/Weihnachtslieder/Kling_Gloeckchen/Kling_Gloeckchen.ly new file mode 100644 index 0000000..7db0c92 --- /dev/null +++ b/Weihnachtslieder/Kling_Gloeckchen/Kling_Gloeckchen.ly @@ -0,0 +1,48 @@ +\include "deutsch.ly" +\include "stimmen.ly" +\include "texte.ly" + +% #(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist)) +% #(set-default-paper-size "kindle") + +\pointAndClickOff + +\paper { + top-margin = 5 + print-all-headers = ##t +} + +\header { + tagline = "" +} + +\score { + << + \new Staff \transpose c d << + \new Voice = rechts { \global \rechtsMelodie } + \new Voice = rechtsOben { \global \voiceOne \rechtsOMelodie } + \new Voice = rechtsUnten { \global \voiceTwo \rechtsUMelodie } + \new Lyrics \lyricsto rechtsOben { \textI } + >> + \new PianoStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = rechts { \global \rechtsMelodie } + \new Voice = rechtsOben { \global \voiceOne \rechtsOMelodie } + \new Voice = rechtsUnten { \global \voiceTwo \rechtsUMelodie } + >> + \new ChordNames { \global \linksMelodie } + \new Staff << + \new Voice = linksPausen { \clef "bass" \global \linksPausen } + \new Voice = links { \clef "bass" \global \linksMelodie } + >> + >> + >> + \header { + tagline = "" + title = "Kling, Glöckchen, kling" + } + \layout { + indent = #0 + } +} diff --git a/Weihnachtslieder/Kling_Gloeckchen/stimmen.ly b/Weihnachtslieder/Kling_Gloeckchen/stimmen.ly new file mode 100644 index 0000000..6483bc8 --- /dev/null +++ b/Weihnachtslieder/Kling_Gloeckchen/stimmen.ly @@ -0,0 +1,45 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key g \major + %\override Staff.TimeSignature #'style = #'() + \time 2/4 + \autoBeamOff + } + +% Die Stimmen + + rechtsMelodie = \relative c'{ + s2*3 | s4. r8 | + s2*11 | s4. r8 | \bar "|." + \bar "|." + } + + rechtsOMelodie = \relative d'' { + d4 h8 c | d16 e d e d4 | c a8 d | h4. s8 | + a a h g | h4 a | c8 c d a | c4 h | + a8 a h cis | d4 a | h8 e d cis | e4 d | + d h8 c | d16 e d e d4 | c a8 d | h4. s8 | \bar "|." + } + + rechtsUMelodie = \relative h' { + h4_\p g8 a | h16 c h c h4 | a4 fis8 fis | g4. s8 | + fis_\< fis g d | g4\> fis | a8\< g fis d | a'4\> g | + a8\< g g g | fis4 fis\> | g\mf\< fis8 e | g4\> fis | + h\p g8 a | h16 c h c h4 | a4 fis8 fis g4. s8 | \bar "|." + \bar "|." + } + + linksMelodie = \relative g { + g8 d g4 | g4. g8 | d4. d8 | g d g s | + d4 g,8 h | d2 | d4. fis8 | g2 | + a4. a8 | d,2 | g,4 a | d2 | + g8 d g4 | g4. g8 | d4. d8 | g d g s | \bar "|." + } + + linksPausen = \relative g { + s2*3 | s4. r8 | + s2*11 | s4. r8 | \bar "|." + } diff --git a/Weihnachtslieder/Kling_Gloeckchen/texte.ly b/Weihnachtslieder/Kling_Gloeckchen/texte.ly new file mode 100644 index 0000000..2cfe122 --- /dev/null +++ b/Weihnachtslieder/Kling_Gloeckchen/texte.ly @@ -0,0 +1,17 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + + textI = \lyricmode { + \set stanza = "Refr." + Kling, Glöck -- chen, klin -- ge -- lin -- ge -- ling, + kling, Glöck -- chen, kling! + \set stanza = "1." + Lasst mich ein, ihr Kin -- der, "'s ist" so kalt der Win -- ter. + Öff -- net mir die Tü -- ren, lasst mich nicht er -- frie -- ren! + \set stanza = "Refr." + Kling, Glöck -- chen, klin -- ge -- lin -- ge -- ling, + kling, Glöck -- chen, kling! + } |