blob: e5ae34afe972040b59d37dbf42a7856ee7c90891 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
\include "deutsch.ly"
include(stimmen.pre)
include(texte.pre)
%spezifisch%
\pointAndClickOff
\header {
title = "Guten Abend, gut' Nacht"
subtitle = "(Wiegenlied)"
poet = "Text: Strophe 1 aus 'Des Knaben WUnderhorn' 1808, Strophe 2 nach Georg Scherer 1849"
arranger = "Satz: Georg L. Sothilander 2014"
meter = "Melodie: Johannes Brahms 1868"
tagline = ""
}
\paper {
top-margin = 5
}
\score {
\new ChoirStaff <<
\new Staff <<
\new Voice = erste { \global \voiceOne \melodieI }
\new Voice = zweite { \global \voiceTwo \melodieII }
>>
ifdef(`STR_1',`\new Lyrics \lyricsto erste { \textI }')
ifdef(`STR_2',`\new Lyrics \lyricsto erste { \textII }')
>>
\layout {
indent = #0
\context { \Staff \RemoveEmptyStaves }
}
}
|