summaryrefslogtreecommitdiff
path: root/hr/kammer/debussy/dieu
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/kammer/debussy/dieu
parent646f69a657326ca8dd733dfa579a90f89823d677 (diff)
downloadMusik-49d14358c33b7d0ba7e7c381f91943617c7723ea.tar.xz
Hauke eingefügt
Diffstat (limited to 'hr/kammer/debussy/dieu')
-rw-r--r--hr/kammer/debussy/dieu/dieu.ly59
-rw-r--r--hr/kammer/debussy/dieu/dieu.psbin0 -> 341482 bytes
-rw-r--r--hr/kammer/debussy/dieu/dieu_6.midibin0 -> 969 bytes
-rw-r--r--hr/kammer/debussy/dieu/dynArt.ly21
-rw-r--r--hr/kammer/debussy/dieu/midi.lua50
-rw-r--r--hr/kammer/debussy/dieu/stimmen.ly88
-rw-r--r--hr/kammer/debussy/dieu/texte.ly22
7 files changed, 240 insertions, 0 deletions
diff --git a/hr/kammer/debussy/dieu/dieu.ly b/hr/kammer/debussy/dieu/dieu.ly
new file mode 100644
index 0000000..7b40c8b
--- /dev/null
+++ b/hr/kammer/debussy/dieu/dieu.ly
@@ -0,0 +1,59 @@
+%some settings% vim: ai sw=2 lbr nu encoding=utf8 et
+
+\version "2.12"
+\include "stimmen.ly"
+\include "texte.ly"
+
+ \header {
+ title = "<+Titel+>"
+ composer = "<+Komponist+>"
+ %opus = "<+Werk+>"
+ %tagline = ""
+ }
+
+ \paper {
+ line-width = \paper-width - 30
+ top-margin = 10
+ bottom-margin = 10
+ }
+
+ \layout {
+ indent = #0
+ \context {
+ \Staff
+ \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3.5)
+ }
+ }
+
+ %#(set-global-staff-size 17)
+
+ \score {
+ \new ChoirStaff \with {} <<
+ \new Staff = sopran <<
+ %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
+ \new Voice = "soprane" { \global \sopranMelodie }
+ %\addlyrics { \sopranText }
+ >>
+ \new Staff = alt <<
+ \new Voice = "alti" { \global \altMelodie }
+ %\addlyrics { \altText }
+ >>
+ \new Staff = tenor <<
+ \new Voice = "tenoere" { \global \tenorMelodie }
+ %\addlyrics { \tenorText }
+ >>
+ \new Staff = bass <<
+ \new Voice = "baesse" { \global \bassMelodie }
+ %\addlyrics { \bassText }
+ >>
+ >>
+ \midi {
+ \context{
+ \Score
+ tempoWholesPerMinute = #(ly:make-moment 72 4)
+ }
+ }
+ %\layout {
+ %}
+ }
+
diff --git a/hr/kammer/debussy/dieu/dieu.ps b/hr/kammer/debussy/dieu/dieu.ps
new file mode 100644
index 0000000..d4024ac
--- /dev/null
+++ b/hr/kammer/debussy/dieu/dieu.ps
Binary files differ
diff --git a/hr/kammer/debussy/dieu/dieu_6.midi b/hr/kammer/debussy/dieu/dieu_6.midi
new file mode 100644
index 0000000..29c7ec7
--- /dev/null
+++ b/hr/kammer/debussy/dieu/dieu_6.midi
Binary files differ
diff --git a/hr/kammer/debussy/dieu/dynArt.ly b/hr/kammer/debussy/dieu/dynArt.ly
new file mode 100644
index 0000000..756726f
--- /dev/null
+++ b/hr/kammer/debussy/dieu/dynArt.ly
@@ -0,0 +1,21 @@
+%some settings% vim: ai sw=2 lbr nu encoding=utf8 et
+
+ meta = {
+ %(dynamic) marks global to all voices
+ \dynamicUp
+ }
+
+% articulation
+
+ sopranArt = {
+ }
+
+ altArt = {
+ }
+
+ tenorArt = {
+ }
+
+ bassArt = {
+ }
+
diff --git a/hr/kammer/debussy/dieu/midi.lua b/hr/kammer/debussy/dieu/midi.lua
new file mode 100644
index 0000000..f8b2520
--- /dev/null
+++ b/hr/kammer/debussy/dieu/midi.lua
@@ -0,0 +1,50 @@
+ -- some settings -- vim: ai sw=2 lbr nu encoding=utf8 et
+
+pre=[[
+%some settings% vim: ai sw=2 lbr nu encoding=utf8 et
+
+\version "2.12"
+\include "stimmen.ly"
+
+ \score {
+]]
+
+post=[[
+ \midi {
+ \context{
+ %\Score
+ %tempoWholesPerMinute = #(ly:make-moment 72 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/kammer/debussy/dieu/stimmen.ly b/hr/kammer/debussy/dieu/stimmen.ly
new file mode 100644
index 0000000..3fbbb43
--- /dev/null
+++ b/hr/kammer/debussy/dieu/stimmen.ly
@@ -0,0 +1,88 @@
+%some settings% vim: ai sw=2 lbr nu encoding=utf8 et
+
+ \version "2.12"
+ \include "dynArt.ly"
+
+ global = {
+ \key b \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 3/4
+ %\autoBeamOff
+ }
+
+% Die Stimmen
+
+ sopranMelodie = \relative c' {
+ <<
+ { \meta }
+ %\sopranArt
+ %the actual tune
+ {
+ r1
+ }
+ >>
+ }
+
+ altMelodie = \relative c' {
+ <<
+ { \meta }
+ %\altArt
+ %the actual tune
+ {
+ r1
+ }
+ >>
+ }
+
+ tenorMelodie = \relative c' {
+ <<
+ { \meta }
+ %\tenorArt
+ %the actual tune
+ \clef "treble_8"
+ {
+ r1
+ }
+ >>
+ }
+
+ bassMelodie = \relative c {
+ <<
+ { \meta }
+ %\bassArt
+ %the actual tune
+ \clef bass
+ {
+ r4 fis2\(
+ cis8 cis8 fis8 fis8 cis8 dis16 e16
+ fis2\) fis4\(
+ e8 dis8 cis4 ~ cis16 cis16 dis16 e16
+ fis4 ~ fis8 e16 dis16 cis8 fis8\)
+ r4 fis4\( a8 fis8
+ fis8. b16 cis8. b16 a8 cis8
+ a4\) r8 fis8\( a8 fis8
+ fis8. a16 b8. a16 fis8\) fis8\(
+ gis8 fis8 e8 cis8 fis8 dis8
+ gis2\) r8 gis8\(
+ cis,8 gis'8 cis8 gis8 cis,8 gis'8
+ cis4 cis8\) r8 r4
+ R2.
+ r4 cis8\( ais8 gis8 fis8
+ f8 e8 dis4 fis8 \times2/3{fis16 a16 fis16}
+ fis4 dis2\)
+ dis8. gis,16( dis'8) gis,16 gis16( dis'8.) dis16(
+ fis2) fis4\(
+ gis4 ais8 gis8 \times2/3{fis8 ais8 fis8}
+ dis4( dis8)\) a'16\( gis16 fis16 gis16 a16 b16
+ cis16 b16 a16 gis16 fis16 gis16 a16 b16 cis16 b16 a16 gis16
+ fis4 fis4\) b,8\( cis8
+ e4 dis8 e8 gis8 fis8
+ e4( dis4)\) fis4\(
+ cis8 cis8 fis8 fis8 cis8 dis16 e16
+ fis4\) r4 r4
+ r4 r8 dis8\( e8 cis8
+ fis,2.\)
+ }
+ >>
+ }
+
diff --git a/hr/kammer/debussy/dieu/texte.ly b/hr/kammer/debussy/dieu/texte.ly
new file mode 100644
index 0000000..51d4b6a
--- /dev/null
+++ b/hr/kammer/debussy/dieu/texte.ly
@@ -0,0 +1,22 @@
+%some settings% vim: ai sw=2 lbr nu encoding=utf8 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+>
+ }
+
+ bassText = \lyrics {
+ %<+hier den Text für den Baß eintragen+>
+ }
+