summaryrefslogtreecommitdiff
path: root/hr/michi/whitacre/rose
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2014-09-10 17:47:07 +0200
committerErich Eckner <git@eckner.net>2014-09-10 17:47:07 +0200
commit49d14358c33b7d0ba7e7c381f91943617c7723ea (patch)
treefd55f0d3900d53978587d2228553359f86e69bbe /hr/michi/whitacre/rose
parent646f69a657326ca8dd733dfa579a90f89823d677 (diff)
downloadMusik-49d14358c33b7d0ba7e7c381f91943617c7723ea.tar.xz
Hauke eingefügt
Diffstat (limited to 'hr/michi/whitacre/rose')
-rw-r--r--hr/michi/whitacre/rose/dynArt.ly63
-rw-r--r--hr/michi/whitacre/rose/midi.lua53
-rw-r--r--hr/michi/whitacre/rose/rose.ly80
-rw-r--r--hr/michi/whitacre/rose/stimmen.ly343
-rw-r--r--hr/michi/whitacre/rose/texte.ly45
5 files changed, 584 insertions, 0 deletions
diff --git a/hr/michi/whitacre/rose/dynArt.ly b/hr/michi/whitacre/rose/dynArt.ly
new file mode 100644
index 0000000..06540fc
--- /dev/null
+++ b/hr/michi/whitacre/rose/dynArt.ly
@@ -0,0 +1,63 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ meta = {
+ %(dynamic) marks global to all voices
+ %\override Staff.TimeSignature #'style = #'()
+ \dynamicUp
+ %\key fis \major
+ \key dis \minor
+ \time 4/4
+ s1*2
+ \time 6/4
+ s1.
+ \time 4/4
+ s1*9
+ \time 6/4
+ s1.
+ \time 4/4
+ s1*2
+ \time 6/4
+ s1.
+ \time 4/4
+ s1
+ \break
+ s1*8
+ \bar "||"
+ \break
+ \key cis \major
+ s1*6
+ \time 3/2
+ s1.*2
+ \time 4/2
+ s1*2
+ \time 3/2
+ s1.*2
+ \time 4/4
+ s1*2
+ \break
+ s1*4
+ \bar "||"
+ s1*4
+ \break
+ s1*5
+ \time 6/4
+ s1.
+ \time 4/4
+ s1*3
+ \bar "|."
+ }
+
+% articulation
+
+ sopranArt = {
+ }
+
+ altArt = {
+ }
+
+ tenorArt = {
+ }
+
+ bassArt = {
+ }
+
diff --git a/hr/michi/whitacre/rose/midi.lua b/hr/michi/whitacre/rose/midi.lua
new file mode 100644
index 0000000..8aef7d6
--- /dev/null
+++ b/hr/michi/whitacre/rose/midi.lua
@@ -0,0 +1,53 @@
+ -- some settings -- vim: ai sw=2 lbr nu et
+
+pre=[[
+%some settings% vim: ai sw=2 lbr nu et
+
+\version "2.12"
+\include "stimmen.ly"
+
+ \score {
+ <<
+ \unfoldRepeats
+]]
+
+post=[[
+ >>
+ \midi {
+ \context{
+ %\Score
+ %tempoWholesPerMinute = #(ly:make-moment 100 4)
+ }
+ }
+ }
+]]
+
+voices={ "s", "a", "t", "b" }
+expand = { s="sopran", a="alt", t="tenor", b="bass" }
+map = { sopran="soprane", alt="alti", tenor="tenoere", bass="baesse" }
+
+function text(stimme)
+ return
+[[
+ \new Staff = ]]..stimme..[[ <<
+ %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
+ \new Voice = "]]..map[stimme]..[[" { \global \]]..stimme..[[Melodie }
+ >>
+]]
+end
+
+function err() print("oops") os.exit() end
+
+which=which or "satb"
+if type(which)~="string" then err() end
+
+for _,v in pairs(voices) do
+ if string.find(which, v) then pre=pre..text(expand[v]) end
+end
+
+input=pre..post
+
+--os.execute(lilypond -...)
+io.stdout:write(input)
+os.exit()
+
diff --git a/hr/michi/whitacre/rose/rose.ly b/hr/michi/whitacre/rose/rose.ly
new file mode 100644
index 0000000..6e8e38f
--- /dev/null
+++ b/hr/michi/whitacre/rose/rose.ly
@@ -0,0 +1,80 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+\version "2.14"
+\include "stimmen.ly"
+\include "texte.ly"
+
+\pointAndClickOff
+
+ \header {
+ title = "Go, lovely rose"
+ composer = "Eric Whitacre"
+ %opus = "<+Werk+>"
+ tagline = \markup {
+ \bold "studentenchor"
+ }
+ }
+
+ \paper {
+ line-width = \paper-width - 30
+ top-margin = 10
+ bottom-margin = 10
+ ragged-last-bottom = #'f
+ }
+
+ \layout {
+ indent = #0
+ \context {
+ \Staff
+ \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3.5)
+ }
+ }
+
+ #(set-global-staff-size 14)
+
+ sop = <<
+ %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
+ \new Voice = "soprane" { \global \sopranMelodie }
+ %\addlyrics { \sopranText }
+ >>
+
+ alt = <<
+ \new Voice = "alti" { \global \altMelodie }
+ %\addlyrics { \altText }
+ >>
+
+ ten = <<
+ \new Voice = "tenoere" { \global \tenorMelodie }
+ \addlyrics { \tenorText }
+ >>
+
+ bas = <<
+ \new Voice = "baesse" { \global \bassMelodie }
+ %\addlyrics { \bassText }
+ >>
+
+ \score {
+ \new ChoirStaff \with { printPartCombineTexts = ##f } <<
+ \new Staff = soloS { \global \sSoloMelodie }
+ \new Staff = sopran { \sop }
+ \new Staff = alt { \alt }
+ \new Staff = soloT { \global \tSoloMelodie }
+ \new Staff = tenor { \ten }
+ \new Staff = tlow { \global \tLowMelodie }
+ \new Staff = bass { \bas }
+ >>
+ %\midi {
+ %\context{
+ %\Score
+ %tempoWholesPerMinute = #(ly:make-moment 72 4)
+ %}
+ %}
+ \layout {
+ \context {
+ \Staff
+ \RemoveEmptyStaves
+ \override VerticalAxisGroup #'remove-first = ##t
+ }
+ }
+ }
+
diff --git a/hr/michi/whitacre/rose/stimmen.ly b/hr/michi/whitacre/rose/stimmen.ly
new file mode 100644
index 0000000..fdd3089
--- /dev/null
+++ b/hr/michi/whitacre/rose/stimmen.ly
@@ -0,0 +1,343 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.12"
+ \include "dynArt.ly"
+
+ global = {
+ %\autoBeamOff
+ }
+
+% Die Stimmen
+
+ sSoloMelodie = \relative c'' {
+ <<
+ { \meta }
+ %\tenorArt
+ %the actual tune
+ {
+ \time 4/4
+ s1*2
+ \time 6/4
+ s1.
+ \time 4/4
+ s1*9
+ \time 6/4
+ s1.
+ \time 4/4
+ s1*2
+ \time 6/4
+ s1.
+ \time 4/4
+ s1*6
+ dis8.( e16 dis4. cis8) fis8 gis8 dis8. e16 dis2 cis4 <gis' \parenthesize dis>1
+ }
+ >>
+ }
+ sopranMelodie = \relative c' {
+ <<
+ { \meta }
+ %\sopranArt
+ %the actual tune
+ {
+ b4( cis4 dis4 eis4) fis4. gis8 eis2 ~ eis4 r4 r4 fis4 \times 2/3 { cis'4( ais4) gis4 } gis4. ais8 fis4 eis4 dis2. dis4
+ <<
+ {
+ b2 cis4 fis4 ~ fis2
+ } \\
+ {
+ b,2 b2 b2
+ }
+ >>
+ \times 2/3 { dis4 cis4 dis4 } \times 2/3 { ais'4( b4) gis4 } fis4 cis4
+ dis2. dis4 gis4( b4) r2 r1 r1
+ b,8( dis8) eis8( gis8) ais4.( b8 ais4) dis4 cis2( b4) ais4 \times 2/3 { b2 b4 } \times 2/3 { ais2 ais4 } \times 2/3 { gis2 gis4 } gis2 fis4 gis4 fis2. r4
+ r4 b,4 cis4 dis4
+ <<
+ {
+ eis4. fis8 ~ fis2 eis4. dis8 ~ dis2 eis4. fis8 ~ fis2 eis4. dis8 ~ dis2
+ } \\
+ {
+ e1 ~ e1 ~ e1 ~ e1
+ }
+ >>
+ e4( gis4) gis4 gis4 e4 gis4 gis4 cis4 dis1
+ cis,2 cis4 dis4 dis2 dis4( fis4) fis2 fis2 fis2 <ais fis>2 gis2 gis2 fis1
+ fis2 r2 r2 r1. r1 r4 d4 c4 d4 dis4( eis4 fis4) eis4 fis4 gis4 ~ gis4 gis4
+ <<
+ {
+ gis2( ais2) ais4 b4 cis4 eis4 fis4( eis2.\fermata)
+ } \\
+ {
+ gis,1 ais4 b4 gis4 cis4 fis4( eis4 dis2\fermata)
+ }
+ >>
+ r4 cis4 <cis b>2 ~ q1 ~ q1 q2 q2
+ r4 cis,4 fis4 ais4 b4 cis4 fis,4 cis4 dis2
+ <<
+ {
+ fis2 fis1
+ } \\
+ {
+ dis2 b1
+ }
+ >>
+ r1 r1 b4( cis4) dis4 eis4 fis4. gis8 eis4 eis4 eis4 eis4 fis4 gis4 ais4 dis4 cis1 cis2 cis2 ~ cis1 ~ cis1
+ }
+ >>
+ }
+
+ altMelodie = \relative c' {
+ <<
+ { \meta }
+ %\altArt
+ %the actual tune
+ {
+ <<
+ {
+ b4( cis4
+ dis4 eis4)
+ } \\
+ {
+ s2 dis2
+ }
+ >>
+ <eis dis>4. q8 dis4( cis4 dis4) dis4 \times 2/3 { ais'4( fis4) eis4 } dis4 eis4
+ cis4. cis8 cis4 cis4 cis2( b4) ais4 gis2 ais4 ais4 \times 2/3 { b4 ais4 b4 } fis'4 b,4 b2 b2 b2. b4 dis4( <gis e>4) r4 gis4 fis4 cis4 e4 fis4 dis1
+ b8( dis8) eis8( gis8) <gis eis>2( dis4) fis4 fis2 r2 \times 2/3 { b4( ais4) gis4 } \times 2/3 { ais4( gis4) fis4 } \times 2/3 { gis4( fis4) e4 } e2 dis4 dis4 dis2. r4
+ r4 b4 cis4 cis4
+ <<
+ {
+ cis4. dis8 ~ dis2 cis4. b8 ~ b2 cis4. dis8 ~ dis2 cis4. b8 ~ b2
+ } \\
+ {
+ cis1 ~ cis1 ~ cis1 ~ cis1
+ }
+ >>
+ <<
+ {
+ e4( gis4) gis4 gis4 e4 gis4 gis4 gis4 gis1
+ } \\
+ {
+ e2 e4 cis4 e4 e4 gis4 fis4 eis1
+ }
+ >>
+ cis2 cis4 dis4 dis2 dis4( fis4) eis2 eis2 eis2 eis2 dis2 dis2 dis2( eis2) eis4( dis4) r2 r2 r1. a4( b4) c4 b4 c4 d4 c4 d4
+ <<
+ {
+ d2. dis4
+ } \\
+ {
+ d1
+ }
+ >>
+ d2 d4 d4 fis1 fis4 fis4 fis4 gis4 gis4( ais4 <cis b>2\fermata)
+ r4 cis4 b4 ais4 <ais fis>1 ~ q1 q2 q2
+ r4 cis,4 cis4 cis4 cis4 fis4 cis4 cis4 cis4( b4) ais4( b4)
+ <<
+ {
+ ais4.( gis8 ~ gis2)
+ } \\
+ {
+ ais1
+ }
+ >>
+ r4 b'4 ais4 fis4 dis1 ~ dis2 dis4 <eis dis>4 q4. q8 dis4 cis4 dis4 eis4
+ <<
+ {
+ fis4 fis4 fis4 fis4 fis1 fis2
+ } \\
+ {
+ eis4 eis4 cis4 cis4 eis1 eis2
+ }
+ >>
+ fis2 ~ fis1 ~ fis1
+ }
+ >>
+ }
+
+ tSoloMelodie = \relative c' {
+ <<
+ { \meta }
+ %\tenorArt
+ %the actual tune
+ {
+ \time 4/4
+ s1*2
+ \time 6/4
+ s1.
+ \time 4/4
+ s1*9
+ \time 6/4
+ s1.
+ \time 4/4
+ s1*2
+ \time 6/4
+ s1.
+ \time 4/4
+ s1
+ r1 r2 r4 e4 fis8( cis'8) cis4 dis8( e16 dis16 cis8) b8 cis4. gis'8 gis2 ~ gis1
+ }
+ >>
+ }
+ tenorMelodie = \relative c' {
+ <<
+ { \meta }
+ %\tenorArt
+ %the actual tune
+ {
+ \clef "treble_8"
+ b4( cis2.) cis4. cis8 b4( ais4 b4) gis4 b4 ais4 \times 2/3 { b4( gis4) fis4 } eis4. eis8 gis4 gis4 fis2. fis4 e2 fis2 gis1
+ <<
+ {
+ \voiceOne
+ gis2 ais2 ais2. fis4 b2
+ }
+ \new Voice {
+ \voiceTwo
+ e,4( fis4) fis2 fis2. fis4 fis2
+ }
+ >>
+ r2 r1 r1
+ b8( dis4.) dis2( b4) b4 b2( dis4) cis4
+ <<
+ {
+ \voiceOne
+ \times 2/3 { dis2 dis4 } \times 2/3 { dis2 dis4 } \times 2/3 { dis2 dis4 } dis4( cis4) b4 ais4 b2.
+ }
+ \new Voice {
+ \voiceTwo
+ \times 2/3 { dis4( cis4) b4 } \times 2/3 { cis4( b4) ais4 } \times 2/3 { b4( ais4) gis4 } fis2 fis4 fis4 fis2.
+ }
+ >>
+ r4
+ r4 b4 cis4 cis4
+ <<
+ {
+ \voiceOne
+ cis4. dis8 ~ dis2 cis4. b8 ~ b2 cis4. dis8 ~ dis2 cis4. b8 ~ b2
+ }
+ \new Voice {
+ \voiceTwo
+ cis1 ~ cis1 ~ cis1 ~ cis1
+ }
+ >>
+ cis4( dis4) e4 dis4 cis4 dis4 e4 cis4 <dis cis>1
+ cis2 cis4 cis4 cis2 <dis cis>2 cis2 cis2 dis2 cis2 cis2 <cis bis>2
+ <<
+ {
+ \voiceOne
+ cis1 cis4( b4)
+ }
+ \new Voice {
+ \voiceTwo
+ ais2( gis2) fis2
+ }
+ >>
+ r2 r2 dis4( eis4) fis4( gis4) fis4 gis4 a1 ~ a2. a4 a4 ais4 a2. a4 ~ a4 a4 b2( cis2) cis4 dis4 eis4 fis4 fis1 r1 r4 cis4 <cis b>2 ~ q1 q2 q2
+ r4 b4 ais4 b4 fis4 fis4 ais4 eis4 fis2 gis2
+ <<
+ {
+ \voiceOne
+ fis4.( e8 ~ e2)
+ }
+ \new Voice {
+ \voiceTwo
+ fis1
+ }
+ >>
+ r1 r1 b4( cis4) cis4 cis4 cis4. cis8 b4 ais4 b4 gis4
+ <<
+ {
+ \voiceOne
+ ais4 ais4 b4 b4 cis4( dis4 cis2) cis2 cis2 cis2 bis2( ais1)
+ }
+ \new Voice {
+ \voiceTwo
+ gis4 gis4 gis4 gis4 gis1 cis2 cis2 ais2 gis2( fis1)
+ }
+ >>
+ }
+ >>
+ }
+ tLowMelodie = \relative c'' {
+ <<
+ { \meta }
+ %\tenorArt
+ %the actual tune
+ {
+ \time 4/4
+ s1*2
+ \time 6/4
+ s1.
+ \time 4/4
+ s1*9
+ \time 6/4
+ s1.
+ \time 4/4
+ s1*2
+ \time 6/4
+ s1.
+ \time 4/4
+ s1
+ r4 b4 b4 b4
+ <<
+ {
+ a4. b8 ~ b2 a4. fis8 ~ fis2 a4. b8 ~ b2 a4. fis8 ~ fis2
+ } \\
+ {
+ a1 ~ a1 ~ a1 ~ a1
+ }
+ >>
+ }
+ >>
+ }
+
+ bassMelodie = \relative c' {
+ <<
+ { \meta }
+ %\bassArt
+ %the actual tune
+ \clef bass
+ {
+ b1 b4. b8 gis4( b,4 gis'4) fis4 eis4 dis4 cis4 b4 ais4. ais8 ais4 ais4 b2. b4 b2 cis2 dis1 b2 cis2 <dis gis,>2. gis,4 gis4( a4) r2 r1 r1
+ b'2 b2( e,4) e4 dis2 r2
+ <<
+ {
+ dis4 dis4 dis4 dis4
+ } \\
+ {
+ gis,4 gis4 fis4 fis4
+ }
+ >>
+ cis'4 cis4 cis2 e4 dis4 <dis gis,>2. r4
+ r4 b'4 b4 b4
+ <<
+ {
+ ais4. b8 ~ b2 ais4. fis8 ~ fis2 ais4. b8 ~ b2 ais4. fis8 ~ fis2
+ } \\
+ {
+ a1 ~ a1 ~ a1 ~ a1
+ }
+ >>
+ a4( b4) cis4 b4 a4 b4 cis4 ais4 gis1
+ cis2 cis4 cis4 bis2 ais2 gis2 gis2 fis2 fis2 eis2 eis2 dis2( cis2) b4( cis4) dis4( cis4) dis4( e4) dis4( eis2.) dis4 fis4 ~ fis2. gis4 fis4 eis4 fis2 b,4 b4 ais2 cis2 eis4 fis4 gis4( ais2.) b4
+ <<
+ {
+ b4 cis4 cis4 cis2( dis2\fermata)
+ } \\
+ {
+ gis,4 ais4 b4 ais4( cis2.\fermata)
+ }
+ >>
+ r1 r2 r4 dis,4 <dis gis,>1 q2 q2 ~ q2 q4 q4 ais4 ais4 ais4 ais4 b2 b2 <b e,>1 r1 r1
+ b'2 b4 b4 b4. b8 gis4 b,4 gis'4 gis4 gis4 cis,4 b4 b4 cis1 r1 <cis fis,>2 q2 ~ q1
+ <<
+ {
+ } \\
+ {
+ }
+ >>
+ }
+ >>
+ }
+
diff --git a/hr/michi/whitacre/rose/texte.ly b/hr/michi/whitacre/rose/texte.ly
new file mode 100644
index 0000000..5ec123a
--- /dev/null
+++ b/hr/michi/whitacre/rose/texte.ly
@@ -0,0 +1,45 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen % -- _
+
+ sopranText = \lyrics {
+ %<+hier den Text für den Sopran eintragen+>
+ }
+
+ altText = \lyrics {
+ %<+hier den Text für den Alt eintragen+>
+ }
+
+ tenorText = \lyrics {
+ %<+hier den Text für den Tenor eintragen+>
+ Go, love -- ly rose,
+ Tell her, tell her
+ that wastes her time
+ and me,
+ that now she knows,
+ her to thee.
+ How sweet
+ Tell her that’s young
+ And shuns to have her gra -- ces spied,
+ gra -- ces spied,
+ That hadst thou spru -- ng. _ _ _ _ _ _
+ Thou must have un -- com -- mend -- ed died.
+ Small is the worth
+ Of beau -- ty from the light re -- tired;
+ Bid, forth,
+ Suf -- fer her -- self
+ to be de -- sired,
+ And not blush so to be ad -- mired.
+ Then die, then die,
+ that she the com -- mon fate of all things rare.
+ How small a part of time they share,
+ that are so won -- drous sweet
+ and fair, and fair!
+ }
+
+ bassText = \lyrics {
+ %<+hier den Text für den Baß eintragen+>
+ }
+