summaryrefslogtreecommitdiff
path: root/hr/stch/tenor/caritas
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/stch/tenor/caritas
parent646f69a657326ca8dd733dfa579a90f89823d677 (diff)
downloadMusik-49d14358c33b7d0ba7e7c381f91943617c7723ea.tar.xz
Hauke eingefügt
Diffstat (limited to 'hr/stch/tenor/caritas')
-rw-r--r--hr/stch/tenor/caritas/caritas.ly72
-rw-r--r--hr/stch/tenor/caritas/caritas.midibin0 -> 1535 bytes
-rw-r--r--hr/stch/tenor/caritas/dynArt.ly21
-rw-r--r--hr/stch/tenor/caritas/midi.lua53
-rw-r--r--hr/stch/tenor/caritas/stimmen.ly127
-rw-r--r--hr/stch/tenor/caritas/texte.ly22
6 files changed, 295 insertions, 0 deletions
diff --git a/hr/stch/tenor/caritas/caritas.ly b/hr/stch/tenor/caritas/caritas.ly
new file mode 100644
index 0000000..d41e864
--- /dev/null
+++ b/hr/stch/tenor/caritas/caritas.ly
@@ -0,0 +1,72 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+\version "2.14"
+\include "stimmen.ly"
+\include "texte.ly"
+
+\pointAndClickOff
+
+ \header {
+ title = "<+Titel+>"
+ composer = "<+Komponist+>"
+ %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 17)
+
+ 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 = sopran { \sop }
+ %\new Staff = alt { \alt }
+ \new Staff = tenor { \ten }
+ %\new Staff = bass { \bas }
+ >>
+ \midi {
+ \context{
+ \Score
+ tempoWholesPerMinute = #(ly:make-moment 66 4)
+ }
+ }
+ %\layout {
+ %}
+ }
+
diff --git a/hr/stch/tenor/caritas/caritas.midi b/hr/stch/tenor/caritas/caritas.midi
new file mode 100644
index 0000000..32d44b2
--- /dev/null
+++ b/hr/stch/tenor/caritas/caritas.midi
Binary files differ
diff --git a/hr/stch/tenor/caritas/dynArt.ly b/hr/stch/tenor/caritas/dynArt.ly
new file mode 100644
index 0000000..30423d4
--- /dev/null
+++ b/hr/stch/tenor/caritas/dynArt.ly
@@ -0,0 +1,21 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ meta = {
+ %(dynamic) marks global to all voices
+ \dynamicUp
+ }
+
+% articulation
+
+ sopranArt = {
+ }
+
+ altArt = {
+ }
+
+ tenorArt = {
+ }
+
+ bassArt = {
+ }
+
diff --git a/hr/stch/tenor/caritas/midi.lua b/hr/stch/tenor/caritas/midi.lua
new file mode 100644
index 0000000..8aef7d6
--- /dev/null
+++ b/hr/stch/tenor/caritas/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/stch/tenor/caritas/stimmen.ly b/hr/stch/tenor/caritas/stimmen.ly
new file mode 100644
index 0000000..11e7c3e
--- /dev/null
+++ b/hr/stch/tenor/caritas/stimmen.ly
@@ -0,0 +1,127 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.12"
+ \include "dynArt.ly"
+
+ global = {
+ \key ees \major
+ %\override Staff.TimeSignature #'style = #'()
+ %\time 4/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"
+ {
+ \time 2/4
+ bes4 bes4
+ \time 3/4
+ bes8 bes8 bes8 bes8 bes4
+ \time 4/4
+ bes4( c4) bes8 bes8 bes8 bes8
+ \time 1/4
+ bes4
+ \time 2/4
+ bes4 bes4
+ \time 3/4
+ bes8 bes8 bes8 bes8 bes4
+ \time 4/4
+ bes4( c4) bes8 bes8 bes8 bes8
+ \time 2/4
+ bes4 bes8 bes8
+ c4 bes4
+ \time 3/4
+ aes8 aes8 bes8 bes8 g8 g8
+ a4 bes4 bes8 bes8
+ \time 2/4
+ c4 bes4
+ \time 3/4
+ aes8 aes8 bes8 bes8 g8 ees8
+ \time 2/4
+ aes4 g4
+ bes4 bes4
+ \time 3/4
+ bes8 bes8 f'8 g8 f8( ees8)
+ \time 4/4
+ ees2 d8 d8 bes4
+ \time 2/4
+ g4 c8 c8
+ d4 c4
+ \time 3/4
+ bes8 bes8 c8 c8 a8 a8
+ b4 c4 c8 c8
+ \time 2/4
+ d8 d8 c8 c8
+ \time 3/4
+ bes8 bes8 c4 a8( f8)
+ bes4 a4 f8 f8
+ \time 2/4
+ g8 g8 f8 f8
+ \time 3/4
+ ees8 ees8 f4 d4
+ ees4 d4 ees4
+ \time 2/4
+ ees4 ees4
+ bes'4 bes4
+ \time 3/4
+ bes8 bes8 bes8 bes8 bes4
+ \time 4/4
+ bes4( c4) bes8 bes8 bes8 bes8
+ \time 1/4
+ bes4
+ \time 5/8
+ bes4.( ~ bes4 ~
+ \time 2/4
+ bes2
+ aes2
+ \time 6/8
+ ees4. f4.) ~
+ \time 2/8
+ f4
+ \time 3/4
+ g4( ees4 aes4)
+ g2.
+ }
+ >>
+ }
+
+ bassMelodie = \relative c {
+ <<
+ { \meta }
+ %\bassArt
+ %the actual tune
+ \clef bass
+ {
+ r1
+ }
+ >>
+ }
+
diff --git a/hr/stch/tenor/caritas/texte.ly b/hr/stch/tenor/caritas/texte.ly
new file mode 100644
index 0000000..3653454
--- /dev/null
+++ b/hr/stch/tenor/caritas/texte.ly
@@ -0,0 +1,22 @@
+%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+>
+ }
+
+ bassText = \lyrics {
+ %<+hier den Text für den Baß eintragen+>
+ }
+