summaryrefslogtreecommitdiff
path: root/Weihnachtslieder/Schneefloeckchen
diff options
context:
space:
mode:
Diffstat (limited to 'Weihnachtslieder/Schneefloeckchen')
-rw-r--r--Weihnachtslieder/Schneefloeckchen/Schneefloeckchen.ly48
-rw-r--r--Weihnachtslieder/Schneefloeckchen/stimmen.ly39
-rw-r--r--Weihnachtslieder/Schneefloeckchen/texte.ly25
3 files changed, 112 insertions, 0 deletions
diff --git a/Weihnachtslieder/Schneefloeckchen/Schneefloeckchen.ly b/Weihnachtslieder/Schneefloeckchen/Schneefloeckchen.ly
new file mode 100644
index 0000000..9e068dd
--- /dev/null
+++ b/Weihnachtslieder/Schneefloeckchen/Schneefloeckchen.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 = 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 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 = "Schneeflöckchen, Weißröckchen"
+ }
+ \layout {
+ indent = #0
+ }
+}
diff --git a/Weihnachtslieder/Schneefloeckchen/stimmen.ly b/Weihnachtslieder/Schneefloeckchen/stimmen.ly
new file mode 100644
index 0000000..a178ee4
--- /dev/null
+++ b/Weihnachtslieder/Schneefloeckchen/stimmen.ly
@@ -0,0 +1,39 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.12"
+
+ global = {
+ \key f \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 3/4
+ \autoBeamOff
+ \partial 4
+ }
+
+% Die Stimmen
+
+ rechtsOMelodie = \relative a' {
+ a8[(_\mf b]) | c4\(\staccato c\)\staccato d | g,\(\staccato g\)\staccato\breathe
+ g8[( a]) | b4\(-- b-- c\)-- | a2\breathe
+ a8[( b]) | c4\(--_\< c-- f\)--\! | e\( d\)\breathe
+ c8[( b]) | a4\( b\)_\> g | f2\! \bar "|."
+ }
+
+ rechtsUMelodie = \relative f' {
+ f8[( g]) | a4\(\staccato a\)\staccato a | e\(\staccato e\)\staccato\breathe
+ e8[( f]) | g4\(-- g-- g\)-- | f2\breathe
+ f8[( g]) | a4\(-- a-- c\)-- | c\( b\)\breathe
+ a8[( g]) | f4\( g\) e | f2 \bar "|."
+ }
+
+ linksMelodie = \relative f, {
+ s4 | f\(\staccato f\)\staccato s | c'\(\staccato c\)\staccato s |
+ c\(-- c-- e\)-- | f2 s4 |
+ f\(-- f-- a,\)-- | b2 b4 | c2 c4 | f2 \bar "|."
+ }
+
+ linksPausen = \relative f, {
+ r4 | s2 r4 | s2 r4 |
+ s2. | s2 r4 |
+ s2.*3 | s2 \bar "|."
+ }
diff --git a/Weihnachtslieder/Schneefloeckchen/texte.ly b/Weihnachtslieder/Schneefloeckchen/texte.ly
new file mode 100644
index 0000000..e3ab071
--- /dev/null
+++ b/Weihnachtslieder/Schneefloeckchen/texte.ly
@@ -0,0 +1,25 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ Schnee -- flöck -- chen, Weiß -- röck -- chen,
+ wann kommst du ge -- schneit.
+ Du wohnst in den Wol -- ken, dein Weg ist so weit.
+ }
+ textII = \lyricmode {
+ \set stanza = "2."
+ Komm setz dich ans Fens -- ter, du lieb -- li -- cher Stern,
+ malst Blu -- men und Blät -- ter,
+ wir ha -- ben dich gern.
+ }
+ textIII = \lyricmode {
+ \set stanza = "3."
+ Schnee -- flöck -- chen, Weiß -- röck -- chen,
+ komm zu uns ins Tal,
+ dann bau'n wir den Schnee -- mann
+ und wer -- fen den Ball.
+ }