summaryrefslogtreecommitdiff
path: root/hr/quartett/dignare
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/quartett/dignare
parent646f69a657326ca8dd733dfa579a90f89823d677 (diff)
downloadMusik-49d14358c33b7d0ba7e7c381f91943617c7723ea.tar.xz
Hauke eingefügt
Diffstat (limited to 'hr/quartett/dignare')
-rw-r--r--hr/quartett/dignare/dignare.ly55
-rw-r--r--hr/quartett/dignare/dynArt.ly56
-rw-r--r--hr/quartett/dignare/midi.lua50
-rw-r--r--hr/quartett/dignare/stimmen.ly145
-rw-r--r--hr/quartett/dignare/texte.ly15
5 files changed, 321 insertions, 0 deletions
diff --git a/hr/quartett/dignare/dignare.ly b/hr/quartett/dignare/dignare.ly
new file mode 100644
index 0000000..a3b29a0
--- /dev/null
+++ b/hr/quartett/dignare/dignare.ly
@@ -0,0 +1,55 @@
+%some settings% vim: ai sw=2 lbr nu encoding=utf8 et
+
+\version "2.12"
+\include "stimmen.ly"
+\include "texte.ly"
+
+ \header {
+ title = "Dignare custos Angele"
+ composer = "Anton Bruckner"
+ %opus = "<+Werk+>"
+ tagline = ""
+ }
+
+ \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 17)
+
+ \score {
+ \new ChoirStaff \with {} <<
+ \new Staff = sopran <<
+ %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
+ { \dynamicUp \meta }
+ \new Voice = "soprane" { \global \voiceOne \sopranMelodie }
+ \new Voice = "alti" { \global \voiceTwo \altMelodie }
+ >>
+ \new Lyrics = "txt" \lyricsto soprane { \text }
+ \new Staff = tenor <<
+ { \dynamicDown \meta }
+ \new Voice = "tenoere" { \global \voiceOne \tenorMelodie }
+ \new Voice = "baesse" { \global \voiceTwo \bassMelodie }
+ >>
+ >>
+ %\midi {
+ %\context{
+ %\Score
+ %tempoWholesPerMinute = #(ly:make-moment 72 4)
+ %}
+ %}
+ \layout {
+ }
+ }
+
diff --git a/hr/quartett/dignare/dynArt.ly b/hr/quartett/dignare/dynArt.ly
new file mode 100644
index 0000000..8d8dd61
--- /dev/null
+++ b/hr/quartett/dignare/dynArt.ly
@@ -0,0 +1,56 @@
+%some settings% vim: ai sw=2 lbr nu encoding=utf8 et
+
+ global = {
+ \key g \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 4/4
+ %\autoBeamOff
+ \partial 2
+ }
+
+ meta = {
+ %(dynamic) marks global to all voices
+ %\dynamicUp
+ \global
+ s2\p
+ s1
+ s1
+ s1
+ s2 s2\mf
+ s1
+ s1
+ s1
+ s2 r2
+ s1\f
+ s1
+ s1
+ s2 s2\p
+ s1
+ s1
+ s1
+ s2 s2
+ s1
+ s1\mf
+ s1
+ s2 s2\f
+ s1
+ s1
+ s1
+ s1
+ \bar "|."
+ }
+
+% articulation
+
+ sopranArt = {
+ }
+
+ altArt = {
+ }
+
+ tenorArt = {
+ }
+
+ bassArt = {
+ }
+
diff --git a/hr/quartett/dignare/midi.lua b/hr/quartett/dignare/midi.lua
new file mode 100644
index 0000000..f8b2520
--- /dev/null
+++ b/hr/quartett/dignare/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/quartett/dignare/stimmen.ly b/hr/quartett/dignare/stimmen.ly
new file mode 100644
index 0000000..844c622
--- /dev/null
+++ b/hr/quartett/dignare/stimmen.ly
@@ -0,0 +1,145 @@
+%some settings% vim: ai sw=2 lbr nu encoding=utf8 et
+
+ \version "2.12"
+ \include "dynArt.ly"
+
+% Die Stimmen
+
+ sopranMelodie = \relative c' {
+ <<
+ %\sopranArt
+ %the actual tune
+ {
+ e2
+ g2 a2
+ b2 c2
+ b2. a4
+ e2\fermata g2
+ b2 c2
+ d2 e2
+ d2. a4
+ b2 s2
+ b2 a4 b4
+ c2( a4) c4
+ e2( d4) d4
+ e2\fermata e2
+ d2 c2
+ b2 a2
+ b2. b4
+ cis2\fermata e,2
+ fis2 g2
+ fis2 fis2(
+ gis2) a2
+ gis2\fermata b2
+ c2. c4
+ b2 e,2
+ e2 fis2
+ gis1\fermata
+ }
+ >>
+ }
+
+ altMelodie = \relative c' {
+ <<
+ %\altArt
+ %the actual tune
+ {
+ e2
+ e2 c2
+ d2 e2
+ d2( c4) c4
+ b2 g'2
+ g2 e2
+ g2 g2
+ g2. fis4
+ g2 s2
+ b2 a4 b4
+ c2( a4) a4
+ g2. g4
+ g2 e2
+ e2 e2
+ e2 e2
+ e2. e4
+ e2 cis2
+ d2 d2
+ d2 dis2(
+ e2) e2
+ e2 e2
+ e2. e4
+ e2 e2
+ e2 e2
+ e1
+ }
+ >>
+ }
+
+ tenorMelodie = \relative c {
+ <<
+ %\tenorArt
+ %the actual tune
+ \clef "treble_8"
+ {
+ e2
+ e2 e2
+ g2 g2
+ g2( e4) e4
+ g2\fermata g2
+ g2 g2
+ d'2 c2
+ b4( a8 g8 a4) d4
+ d2 s2
+ b2 a4 b4
+ c2( a4) a4
+ c2. b4
+ c2\fermata c2
+ b2 a2
+ gis2 a2
+ a2( gis4) gis4
+ a2\fermata a2
+ a2 b2
+ a2 b2 ~
+ b2 cis2
+ b2\fermata gis2
+ a2. a4
+ gis2 e2
+ e2 c'2
+ b1\fermata
+ }
+ >>
+ }
+
+ bassMelodie = \relative c {
+ <<
+ %\bassArt
+ %the actual tune
+ \clef bass
+ {
+ e2
+ c2 a2
+ g2 c2
+ g2( a4) a4
+ e'2 g2
+ e2 c2
+ b2 c2
+ d2. d4
+ g,2 s2
+ b'2 a4 b4
+ c2( a4) f4
+ e4( f4 g4) g4
+ c,2 a2
+ b2 c4( d4)
+ e2 e2
+ e2. e4
+ a,2 a2
+ d2 g,2
+ d'2 b2(
+ e2) a,2
+ e'2 e2
+ a,2. a4
+ e'2 e4( d4)
+ c2 a2
+ c,1
+ }
+ >>
+ }
+
diff --git a/hr/quartett/dignare/texte.ly b/hr/quartett/dignare/texte.ly
new file mode 100644
index 0000000..b7d4e81
--- /dev/null
+++ b/hr/quartett/dignare/texte.ly
@@ -0,0 +1,15 @@
+%some settings% vim: ai sw=2 lbr nu encoding=utf8 et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ text = \lyrics {
+ Iam lu -- cis or -- to si -- de -- re
+ Di -- gna -- re cu -- stos an -- ge -- le!
+ Men -- tis fu -- ga -- re nu -- bi -- la
+ Et al -- ma fer -- re lu -- mi -- na;
+ Me re -- cta pru -- dens do -- ce,
+ Ut ex -- se -- quar me com -- mo -- ne.
+ }
+