diff options
author | Erich Eckner <git@eckner.net> | 2017-05-18 08:55:52 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-05-18 08:55:52 +0200 |
commit | 06cb90cb6f04b8b7d82ac3164b286490d5a40ba4 (patch) | |
tree | 951c3c121c5b35106c78dc2323fabacf277e3847 /Das_Jahr_steht_auf_der_Hoehe | |
parent | 7f37b2c813130d34411724b9a08e9d75b95d56f4 (diff) | |
download | Musik-06cb90cb6f04b8b7d82ac3164b286490d5a40ba4.tar.xz |
Das_Jahr_steht_auf_der_Hoehe: Korrekturen
Diffstat (limited to 'Das_Jahr_steht_auf_der_Hoehe')
-rwxr-xr-x | Das_Jahr_steht_auf_der_Hoehe/Das_Jahr_steht_auf_der_Hoehe.ly | 47 | ||||
-rw-r--r-- | Das_Jahr_steht_auf_der_Hoehe/Makefile | 23 | ||||
-rwxr-xr-x | Das_Jahr_steht_auf_der_Hoehe/stimmen.ly | 31 |
3 files changed, 71 insertions, 30 deletions
diff --git a/Das_Jahr_steht_auf_der_Hoehe/Das_Jahr_steht_auf_der_Hoehe.ly b/Das_Jahr_steht_auf_der_Hoehe/Das_Jahr_steht_auf_der_Hoehe.ly index ff8da73..9bd7039 100755 --- a/Das_Jahr_steht_auf_der_Hoehe/Das_Jahr_steht_auf_der_Hoehe.ly +++ b/Das_Jahr_steht_auf_der_Hoehe/Das_Jahr_steht_auf_der_Hoehe.ly @@ -1,34 +1,39 @@ \include "deutsch.ly" +#(ly:set-option 'relative-includes #t) \include "stimmen.ly" \include "texte.ly" +#(ly:set-option 'relative-includes #f) -#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist)) -#(set-default-paper-size "kindle") +%spezifisch% \pointAndClickOff \header { tagline = "" - title = "Das Jahr steht auf der Höhe" } - -Praes = { - \time 2/2 - \key g \major - \partial 4 +\paper { + top-margin = 5 + print-all-headers = ##t } -\new ChoirStaff << - \new Staff << - \new Voice = "FrauenPausen" { \oneVoice \frauenPausen } - \new Voice = "Sopran" { \voiceOne \sopranMelodie } - \new Voice = "Alt" { \voiceTwo \altMelodie } - \new Lyrics \lyricsto "Sopran" \textI - \new Lyrics \lyricsto "Sopran" \textII - \new Lyrics \lyricsto "Sopran" \textIII - >> - - \new Staff << - \new Voice = "Maenner" { \clef "bass" \maennerMelodie } +\score { + \header { + title = "Das Jahr steht auf der Höhe" + } + \new ChoirStaff << + \new Staff << + \new Voice = "FrauenPausen" { \oneVoice \frauenPausen } + \new Voice = "Sopran" { \voiceOne \sopranMelodie } + \new Voice = "Alt" { \voiceTwo \altMelodie } + \new Lyrics \lyricsto "Sopran" \textI + \new Lyrics \lyricsto "Sopran" \textII + \new Lyrics \lyricsto "Sopran" \textIII + >> + \new Staff << + \new Voice = "Maenner" { \clef "bass" \maennerMelodie } + >> >> ->> + \layout { + indent = #0 + } +} diff --git a/Das_Jahr_steht_auf_der_Hoehe/Makefile b/Das_Jahr_steht_auf_der_Hoehe/Makefile new file mode 100644 index 0000000..ef6dedf --- /dev/null +++ b/Das_Jahr_steht_auf_der_Hoehe/Makefile @@ -0,0 +1,23 @@ +CURDOC=$(shell basename "$(CURDIR)") + +ifeq ($(FUER),ewe) + SPEZIFISCH=\#(set! paper-alist (cons '(\"kindle\" . (cons (* 210 mm) (* 130 mm))) paper-alist))\n\#(set-default-paper-size \"kindle\") +else + SPEZIFISCH= + # \#(set-global-staff-size 14) +endif + +all: $(CURDOC).pdf + +clean: + rm -f *.pre + +Clean: clean + rm -f *.pdf *.midi + +%.pre: %.ly + sed "s@%spezifisch%@$(SPEZIFISCH)@" "$<" > "$@" + +%.pdf: %.pre *.ly + lilypond $< + diff --git a/Das_Jahr_steht_auf_der_Hoehe/stimmen.ly b/Das_Jahr_steht_auf_der_Hoehe/stimmen.ly index 7bdff5f..b099d04 100755 --- a/Das_Jahr_steht_auf_der_Hoehe/stimmen.ly +++ b/Das_Jahr_steht_auf_der_Hoehe/stimmen.ly @@ -43,11 +43,25 @@ altMelodie = \relative c' { \Praes d4 | h4. c8 d4 h | - g2 c4 h | + << + { + g2 c4 h | + } + \new Voice { \voiceFour + c2 c4 c | + } + >> a c c a | h2 s4 d | h4. c8 d4 h | - g2 c4 h | + << + { + g2 c4 h | + } + \new Voice { \voiceFour + c2 c4 c | + } + >> a c c a | h2 s4 d | @@ -70,14 +84,13 @@ maennerMelodie = \relative c { \Praes \clef "bass" g4. g8 g4 g | c,2 c4 c | d d d d | - <g g,>2 r4 - g | - g4. d8 h4 c | + <g g,>2 r4 g | + g4. g8 g4 g | d2 d4 d | - e e e e | - h2 r4 h | - e4. e8 e4 e | - a,2 a4 a | + e e a a | + d,2 r4 d | + g4. g8 g4 g | + c,2 c4 c | d d d d | <g g,>2 r4 \bar "|." } |