From 52aff18427d41186741c997e444e3463262cd17f Mon Sep 17 00:00:00 2001 From: leopoldfajtak Date: Thu, 7 Nov 2024 17:22:22 +0100 Subject: [PATCH] Added ecce virgo --- co_seht_die_jungfrau/assignments.tt | 6 ++ .../seht_die_jungfrau_full.ly | 8 +++ co_seht_die_jungfrau/seht_die_jungfrau_lz.ly | 10 ++++ .../seht_die_jungfrau_schola.ly | 8 +++ .../seht_die_jungfrau_vars.ly | 58 +++++++++++++++++++ 5 files changed, 90 insertions(+) create mode 100644 co_seht_die_jungfrau/assignments.tt create mode 100644 co_seht_die_jungfrau/seht_die_jungfrau_full.ly create mode 100644 co_seht_die_jungfrau/seht_die_jungfrau_lz.ly create mode 100644 co_seht_die_jungfrau/seht_die_jungfrau_schola.ly create mode 100644 co_seht_die_jungfrau/seht_die_jungfrau_vars.ly diff --git a/co_seht_die_jungfrau/assignments.tt b/co_seht_die_jungfrau/assignments.tt new file mode 100644 index 0000000..5c640c1 --- /dev/null +++ b/co_seht_die_jungfrau/assignments.tt @@ -0,0 +1,6 @@ +[% + scores = { + SATB = 'freie_lieder/co_seht_die_jungfrau/seht_die_jungfrau_schola.ly' + band = 'freie_lieder/co_seht_die_jungfrau/seht_die_jungfrau_full.ly' + }; +-%] diff --git a/co_seht_die_jungfrau/seht_die_jungfrau_full.ly b/co_seht_die_jungfrau/seht_die_jungfrau_full.ly new file mode 100644 index 0000000..53d85bd --- /dev/null +++ b/co_seht_die_jungfrau/seht_die_jungfrau_full.ly @@ -0,0 +1,8 @@ +\version "2.24.4" +\language deutsch + +\include "../sheet.ly" +\include "seht_die_jungfrau_vars.ly" +\include "gregorian.ly" + +\score { \FullScore } diff --git a/co_seht_die_jungfrau/seht_die_jungfrau_lz.ly b/co_seht_die_jungfrau/seht_die_jungfrau_lz.ly new file mode 100644 index 0000000..2d67593 --- /dev/null +++ b/co_seht_die_jungfrau/seht_die_jungfrau_lz.ly @@ -0,0 +1,10 @@ +\version "2.24.4" +\language deutsch + +\include "../paper.ly" +\include "seht_die_jungfrau_vars.ly" +\include "gregorian.ly" + +\score { + \VocalScore +} diff --git a/co_seht_die_jungfrau/seht_die_jungfrau_schola.ly b/co_seht_die_jungfrau/seht_die_jungfrau_schola.ly new file mode 100644 index 0000000..a40b43b --- /dev/null +++ b/co_seht_die_jungfrau/seht_die_jungfrau_schola.ly @@ -0,0 +1,8 @@ +\version "2.24.4" +\language deutsch + +\include "../sheet.ly" +\include "seht_die_jungfrau_vars.ly" +\include "gregorian.ly" + +\score { \VocalScore } diff --git a/co_seht_die_jungfrau/seht_die_jungfrau_vars.ly b/co_seht_die_jungfrau/seht_die_jungfrau_vars.ly new file mode 100644 index 0000000..19b4145 --- /dev/null +++ b/co_seht_die_jungfrau/seht_die_jungfrau_vars.ly @@ -0,0 +1,58 @@ +\language deutsch + +\include "gregorian.ly" +% Ps 145 (144) 8 +% 3. Modus +chant.meta = { + \key c \major + \set Score.timing = ##f +} +chant.ant.meta = { + {\chant.meta} + s4*19 \divisioMaxima + s4*11 \divisioMinima + s4*7 \finalis +} +chant.ant.cantus = \fixed c' { + d4 f( e) f( g) d + c e g( a) a + g a h c' a c'( d') a + a( g) f( e) f g f( g) f g a + d( e) d( c) c( d) +} +chant.ant.S = \relative c' { + d2 s2 d s e2 s s a s2 a4 s2 f2 s4 g2 s4 f2 s4 e2 s2 d +} +chant.ant.A = \relative c' { + a2 s2 b s c2 s s c s2 e4 s2 c2 s4 c2 s4 c2 s4 c2 s2 a +} +chant.ant.T = \relative { + d2 s2 f s g2 s s e s2 a4 s2 a2 s4 g2 s4 a2 s4 g2 s2 d +} +chant.ant.B = \relative { + d,2 s2 b' s a2 s s f s2 a4 s2 d2 s4 e2 s4 f2 s4 a,2 s2 d, +} +verba.ant = \lyricmode { + Seht, die Jung -- frau wird emp -- fan -- gen und ei -- nen Sohn ge -- bäh -- ren; + Sein Na -- me ist Im -- ma -- nu -- el + Gott mit uns. +} + +VocalScore = \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice = "melody" <<\chant.ant.meta \chant.ant.cantus>> + \new GregorianTranscriptionLyrics \lyricsto melody {\verba.ant} + >> +FullScore = << + {\VocalScore} + \new StaffGroup << + \new GregorianTranscriptionStaff << + \new GregorianTranscriptionVoice <<\voiceOne \chant.ant.meta \chant.ant.S>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.ant.meta \chant.ant.A>> + >> + \new GregorianTranscriptionStaff << + \clef bass + \new GregorianTranscriptionVoice <<\voiceOne \chant.ant.meta \chant.ant.T>> + \new GregorianTranscriptionVoice <<\voiceTwo \chant.ant.meta \chant.ant.B>> + >> + >> +>>