summaryrefslogtreecommitdiff
path: root/Burden_down_Lord
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2014-09-04 10:59:12 +0200
committerErich Eckner <git@eckner.net>2014-09-04 10:59:12 +0200
commitcd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd (patch)
tree25be2d35abeec51d18d0204e199f3bdbf66826b1 /Burden_down_Lord
downloadMusik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz
initialer Commit
Diffstat (limited to 'Burden_down_Lord')
-rw-r--r--Burden_down_Lord/Burden_down_Lord.ly44
-rw-r--r--Burden_down_Lord/stimmen.ly56
-rw-r--r--Burden_down_Lord/texte.ly21
3 files changed, 121 insertions, 0 deletions
diff --git a/Burden_down_Lord/Burden_down_Lord.ly b/Burden_down_Lord/Burden_down_Lord.ly
new file mode 100644
index 0000000..0fb10aa
--- /dev/null
+++ b/Burden_down_Lord/Burden_down_Lord.ly
@@ -0,0 +1,44 @@
+\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
+}
+\header {
+ title = "Burden down, Lord"
+ composer = ##f
+ tagline = ##f
+}
+
+\score {
+ \header {
+ title = ##f
+ composer = ##f
+ }
+
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new Staff <<
+ \new Voice = sopran { \global \voiceOne \sopranMelodie }
+ \new Voice = alt { \global \voiceTwo \altMelodie }
+ >>
+ \new Lyrics \lyricsto alt { \set stanza = "1." \TextI }
+ \new Lyrics \lyricsto alt { \set stanza = "2." \TextII }
+ \new Lyrics \lyricsto alt { \set stanza = "3." \TextIII }
+ \new Lyrics \lyricsto alt { \set stanza = "4." \TextI }
+ \new Staff <<
+ \new Voice = tenor { \global \voiceOne \clef "bass" \tenorMelodie }
+ \new Voice = bass { \global \voiceTwo \clef "bass" \bassMelodie }
+ >>
+ >>
+ \layout {
+ indent = #0
+ }
+} \ No newline at end of file
diff --git a/Burden_down_Lord/stimmen.ly b/Burden_down_Lord/stimmen.ly
new file mode 100644
index 0000000..fb17116
--- /dev/null
+++ b/Burden_down_Lord/stimmen.ly
@@ -0,0 +1,56 @@
+\version "2.18"
+
+global = {
+ \time 4/4
+ \key g \major
+ \autoBeamOff
+ \partial 4
+}
+
+sopranMelodie = \relative d' {
+ d8 e |
+ g4 g2 h8 h |
+ h4 g2 h8 a |
+ g4 g2 g8 g |
+ e[ d]~ d4 r d8 e |
+ g4 g2 h8 d16[ h] |
+ d4 h2 e8 d |
+ h4 g2 a8 a |
+ g2. \bar "|."
+}
+
+altMelodie = \relative d' {
+ d8 e |
+ d4 d2 g8 g |
+ g4 d2 g8 f |
+ e4 e2 e8 c |
+ c[ h] h c h4 d8 e |
+ d4 d2 g8 h16[ g] |
+ gis4 gis2 gis8 gis |
+ g4 e fis fis |
+ d2. \bar "|."
+}
+
+tenorMelodie = \relative d {
+ d8 e |
+ h'4 h2 d8 d |
+ d4 h2 d8 d |
+ c4 c2 c8 g |
+ g4 g8 a g4 d8 e |
+ h'4 h2 d8 d |
+ e4 d2 h8 h |
+ cis4 cis c c |
+ h2. \bar "|."
+}
+
+bassMelodie = \relative d {
+ d8 e |
+ g,4 g2 g8 g |
+ g'4 g2 g8 g |
+ c,4 c2 c8 e |
+ g4 g8 g g4 d8 e |
+ g,4 g2 g'8 fis |
+ e4 e2 e8 e |
+ a,4 a d d |
+ g,2. \bar "|."
+}
diff --git a/Burden_down_Lord/texte.ly b/Burden_down_Lord/texte.ly
new file mode 100644
index 0000000..dfea21a
--- /dev/null
+++ b/Burden_down_Lord/texte.ly
@@ -0,0 +1,21 @@
+
+TextI = \lyricmode {
+ Bur -- den down, Lord, bur -- den down, Lord,
+ since I lay my bur -- den down, bur -- den down.
+ Bur -- den down, Lord, bur -- den down, Lord,
+ since I lay my bur -- den down.
+}
+
+TextII = \lyricmode {
+ Won -- der will my sis -- ter know me,
+ since I lay my bur -- den down, bur -- den down.
+ Won -- der will my sis -- ter know me,
+ since I lay my bur -- den down.
+}
+
+TextIII = \lyricmode {
+ Won -- der will my bro -- ther know me,
+ since I lay my bur -- den down, bur -- den down.
+ Won -- der will my bro -- ther know me,
+ since I lay my bur -- den down.
+}