diff options
Diffstat (limited to 'Weihnachtslieder/Stille_Nacht')
-rw-r--r-- | Weihnachtslieder/Stille_Nacht/Stille_Nacht.ly | 48 | ||||
-rw-r--r-- | Weihnachtslieder/Stille_Nacht/stimmen.ly | 33 | ||||
-rw-r--r-- | Weihnachtslieder/Stille_Nacht/texte.ly | 33 |
3 files changed, 114 insertions, 0 deletions
diff --git a/Weihnachtslieder/Stille_Nacht/Stille_Nacht.ly b/Weihnachtslieder/Stille_Nacht/Stille_Nacht.ly new file mode 100644 index 0000000..cc82558 --- /dev/null +++ b/Weihnachtslieder/Stille_Nacht/Stille_Nacht.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 = rechtsUnten { \global \voiceTwo \rechtsUMelodie } + \new Lyrics \lyricsto rechts { \textI } + \new Lyrics \lyricsto rechts { \textII } + \new Lyrics \lyricsto rechts { \textIII } + >> + \new PianoStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = rechts { \global \rechtsMelodie } + \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 = "Stille Nacht, heilige Nacht" + } + \layout { + indent = #0 + } +} diff --git a/Weihnachtslieder/Stille_Nacht/stimmen.ly b/Weihnachtslieder/Stille_Nacht/stimmen.ly new file mode 100644 index 0000000..c43d7ac --- /dev/null +++ b/Weihnachtslieder/Stille_Nacht/stimmen.ly @@ -0,0 +1,33 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key c \major + %\override Staff.TimeSignature #'style = #'() + \time 6/8 + \autoBeamOff + } + +% Die Stimmen + + rechtsMelodie = \relative g' { + <g e>8.[\(_\p <a f>16] <g e>8 <e c>4.\) | + <g e>8.\( <a f>16 <g e>8 <e c>4.\) | + <f d'>4\( <f d'>8 <f h>4.\) | <e c'>4\( <e c'>8 <e g>4.\) | + \repeat unfold 2 { <f a>4\(_\< <f a>8 <a c>8. <g h>16 <f a>8\)\! | <e g>8.\(_\> <f a>16 <e g>8 <c e>4.\)\! | } + <f h d>4\(_\p_\< <f h d>8 \voiceOne f'8.\! d16 h8\) \oneVoice | + <e, c'>4.(_\> <g e'>)\! | \voiceOne c8.[\( g16] e8\) g8.\( f16 d8\) \oneVoice | c4.~ c4 r8 | \bar "|." + } + + rechtsUMelodie = \relative f' { + s2.*8 | s4. <f h>4( f8) | s2. | e4(_\pp c8)_\> h4( h8) | s2.\! | \bar "|." + } + + linksMelodie = \relative c { + c4. c | c c | g g | c c | f, f | c' c | f, f | c' c | g g | c c | g g | c( \chordmode { c,4) } s8 | \bar "|." + } + + linksPausen = \relative c { + s2.*11 | s2 s8 r8 | \bar "|." + } diff --git a/Weihnachtslieder/Stille_Nacht/texte.ly b/Weihnachtslieder/Stille_Nacht/texte.ly new file mode 100644 index 0000000..32fcf6d --- /dev/null +++ b/Weihnachtslieder/Stille_Nacht/texte.ly @@ -0,0 +1,33 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + + textI = \lyricmode { + \set stanza = "1." + Stil -- le Nacht, hei -- li -- ge Nacht! + Al -- les schläft, ein -- sam wacht + nur das trau -- te, hoch -- hei -- li -- ge Paar. + Hol -- der Kna -- be im lo -- cki -- gen Haar, + schlaf in himm -- li -- scher Ruh, + schlaf in himm -- li -- scher Ruh. + } + textII = \lyricmode { + \set stanza = "2." + Stil -- le Nacht, hei -- li -- ge Nacht! + Hir -- ten erst kund ge -- macht + durch der En -- gel Ha -- le -- _ lu -- ja + tönt es laut _ bei fern _ und nah: + Christ, der Ret -- ter ist da, + Christ, der Ret -- ter ist da! + } + textIII = \lyricmode { + \set stanza = "3." + Stil -- le Nacht, hei -- li -- ge Nacht! + Got -- tes Sohn, o, wie lacht + lieb aus dei -- _ nem Gött -- li -- chen Mund, + da uns schlägt _ die ret -- ten -- de Stund, + Christ, in dei -- ner Ge -- burt, + Christ, in dei -- ner Ge -- burt! + } |