blob: 70d5106d4089fa4b8c079fa741b1b1662bb3c3bc (
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
35
36
37
38
39
40
41
42
|
\include "deutsch.ly"
include(stimmen.pre)
include(texte.pre)
%spezifisch%
\version "2.19.80"
\pointAndClickOff
\header {
tagline = ""
}
\paper {
top-margin = 5
print-all-headers = ##t
}
\score {
\header {
title = "Halte deine Träume fest"
composer = "Musik: Jürgen Kandziora 1980"
poet = "English: Johannes Blum 1980"
meter = "Deutsch: Eugen Eckert 1980"
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new ChordNames { \global \germanChords \akkorde }
\new Staff <<
\new Voice = melodie \transpose c transponiert { \global \oneVoice \melodie }
>>
ifdef(`STR_1D',`\new Lyrics \lyricsto melodie { \textDI }')
ifdef(`STR_1E',`\new Lyrics \lyricsto melodie { \textEI }')
ifdef(`STR_2D',`\new Lyrics \lyricsto melodie { \textDII }')
ifdef(`STR_2E',`\new Lyrics \lyricsto melodie { \textEII }')
ifdef(`STR_3D',`\new Lyrics \lyricsto melodie { \textDIII }')
ifdef(`STR_3E',`\new Lyrics \lyricsto melodie { \textEIII }')
>>
\layout {
indent = #0
}
}
|