diff options
Diffstat (limited to 'Weihnachtslieder/Lasst_uns_froh_und_munter_sein')
3 files changed, 120 insertions, 0 deletions
diff --git a/Weihnachtslieder/Lasst_uns_froh_und_munter_sein/Lasst_uns_froh_und_munter_sein.ly b/Weihnachtslieder/Lasst_uns_froh_und_munter_sein/Lasst_uns_froh_und_munter_sein.ly new file mode 100644 index 0000000..d29376e --- /dev/null +++ b/Weihnachtslieder/Lasst_uns_froh_und_munter_sein/Lasst_uns_froh_und_munter_sein.ly @@ -0,0 +1,52 @@ +\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 = rechtsOben { \global \voiceOne \rechtsOMelodie } + \new Voice = rechtsUnten { \global \voiceTwo \rechtsUMelodie } + \new Lyrics \lyricsto rechtsOben { \textI } + \new Lyrics \lyricsto rechtsOben { \textII } + \new Lyrics \lyricsto rechtsOben { \textIII } + \new Lyrics \lyricsto rechtsOben { \textIV } + \new Lyrics \lyricsto rechtsOben { \textV } + \new Lyrics \lyricsto rechtsOben { \textVI } + \new Lyrics \lyricsto rechtsOben { \textVII } + >> + \new PianoStaff << + \set Score.skipBars = ##t + \new Staff << + \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 = "Lasst uns froh und munter sein" + } + \layout { + indent = #0 + } +} diff --git a/Weihnachtslieder/Lasst_uns_froh_und_munter_sein/stimmen.ly b/Weihnachtslieder/Lasst_uns_froh_und_munter_sein/stimmen.ly new file mode 100644 index 0000000..047a31f --- /dev/null +++ b/Weihnachtslieder/Lasst_uns_froh_und_munter_sein/stimmen.ly @@ -0,0 +1,30 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key g \major + %\override Staff.TimeSignature #'style = #'() + \time 4/4 + \autoBeamOff + } + +% Die Stimmen + + rechtsOMelodie = \relative d'' { + d4 d d8[( e]) d[( c]) | h4 h h2 | c4 c c8[( d]) c[( h]) | a4 a a2 | + g4 a h c | d8 e d e d2 | <h g'>4 d d8[ e] d[ c] | h4 a d2 | <h g'>4 d d8[ e] d[ c] | h4 a g2 | \bar "|." + } + + rechtsUMelodie = \relative h' { + h2_\mf h8[( c]) h[( a]) | g4 g g2 | a2 a4 a8[( g]) | fis4 <e g> <d fis>2 | + g4_\< fis g a | h8 c h c h2 | g4\f g e fis | g_\> fis a( g) | g\f g a2 | g4_\> fis g2\! | \bar "|." + } + + linksMelodie = \relative g { + g2 d | g s4 g | d2 fis | d2. c4 | h a g d' | g,2. g4 | g h c d~ | d c h2 | g4 h c2 | d4 d g,2 | \bar "|." + } + + linksPausen = \relative g { + s1 | s2 r4 s | s1*8 | \bar "|." + } diff --git a/Weihnachtslieder/Lasst_uns_froh_und_munter_sein/texte.ly b/Weihnachtslieder/Lasst_uns_froh_und_munter_sein/texte.ly new file mode 100644 index 0000000..2dd7a26 --- /dev/null +++ b/Weihnachtslieder/Lasst_uns_froh_und_munter_sein/texte.ly @@ -0,0 +1,38 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + + textI = \lyricmode { + \set stanza = "1." + Lasst uns froh und mun -- ter sein und uns recht von Her -- zen freun! + \set stanza = "Refr." + Lus -- tig, lus -- tig tra -- la -- la -- la -- la, + bald ist Nik -- laus -- a -- bend da, + bald ist Nik -- laus -- a -- bend da! + } + textII = \lyricmode { + \set stanza = "2." + Bald ist uns -- re Schu -- le aus, dann ziehn wir ver -- gnügt nach Haus. + } + textIII = \lyricmode { + \set stanza = "3." + Dann stell ich den Tel -- ler raus, Nik -- laus legt ge -- wiss was drauf. + } + textIV = \lyricmode { + \set stanza = "4." + Steht der Tel -- ler auf dem Tisch, sing ich noch -- mals froh und frisch: + } + textV = \lyricmode { + \set stanza = "5." + Wenn ich schlaf, dann träu -- me ich: Jetzt bringt Nik -- laus was für mich. + } + textVI = \lyricmode { + \set stanza = "6." + Wenn ich auf -- ge -- stan -- den bin, lauf ich schnell zum Tel -- ler hin. + } + textVII = \lyricmode { + \set stanza = "7." + Nik -- laus ist ein gu -- ter Mann, dem man nicht g'nug dan -- ken kann. + } |