83 lines
2.3 KiB
Plaintext
83 lines
2.3 KiB
Plaintext
\version "2.22.1"
|
|
\language deutsch
|
|
|
|
\include "../../../lilypond_songsheet_paper.ly"
|
|
|
|
global = {
|
|
\key d \major
|
|
\time 2/2
|
|
s1*4 \breathe
|
|
s1*4 \bar "|."
|
|
s1*4 \breathe
|
|
s1*4 \bar "||"
|
|
}
|
|
Song.Voices.Soprano = \relative {
|
|
a'2 fis4. (g8) | a2 d, | e8 (fis g a g4) fis | e1
|
|
fis8 (g a h a4) a | d2 a | g4 (fis e4.) d8 |\mark "Fine" 1 \bar "|."
|
|
fis8 ( e fis g fis4) 4 | e2 d | g4 (fis e) d | cis1
|
|
d8 (cis d e d4) d | h'2 gis | a4 (h8 a gis4.) a8 |\mark "1-3 da capo al Fine" 1
|
|
}
|
|
Song.Voices.Alto = \relative {
|
|
d'2 4. (cis8) | d2 a | cis8 (d e fis e4) d | cis1
|
|
d2. 4| 2 2 | cis4 (d2) cis4 |d1
|
|
d8 ( cis d e d4) 4 | cis2 h | e4 (d cis) h | ais1
|
|
h8 (ais h cis h4) h | d2. 4 | cis4 (d8 cis h4) e |1
|
|
}
|
|
Song.Voices.Tenor = \relative {
|
|
fis2 a4. (g8) | fis2 a | g4 (e a) a | 1
|
|
2. 4 | 2 fis | g4 (a2) g4 | fis1
|
|
a2. 4 | g2 fis | ais4 (h g) fis | 1
|
|
fis2. 4 | e2 h' | a4 (fis) h h | cis1
|
|
}
|
|
Song.Voices.Bass = \relative {
|
|
d2 fis4. (e8) | d2 fis | e4. (d8 cis4) d | a1
|
|
d8 (e fis a fis4) 4| 2 d | e4 (fis8 g a4) a, | d1
|
|
2. 4 | a2 h | cis4 (d e) h | fis'1
|
|
h,2. a4 | gis2 e' | fis4 (d) e e | a,1
|
|
}
|
|
|
|
Song.Lyrics.I = \lyricmode {
|
|
\set stanza = "1."
|
|
Toch -- ter Zi -- on, freu -- e dich,
|
|
jauch -- ze laut, Je -- ru -- sa -- lem!
|
|
Sieh, -- dein Kö -- nig kommt zu dir,
|
|
ja er kommt, der Frie -- de -- fürst.
|
|
}
|
|
Song.Lyrics.II = \lyricmode {
|
|
\set stanza = "2."
|
|
Ho -- si -- an -- na, Da -- vids Sohn,
|
|
sei ge -- seg -- net dei -- nem Volk!
|
|
Grün -- de nun dein e -- wig Reich,
|
|
Ho -- si -- an -- na in der Höh!
|
|
}
|
|
Song.Lyrics.III = \lyricmode {
|
|
\set stanza = "3."
|
|
Ho -- si -- an -- na, Da -- vids Sohn,
|
|
sei -- ge -- grü -- ßet, Kö -- nig mild!
|
|
E -- wig steht Dein Frie -- dens -- thron,
|
|
Du, des ew -- gen Va -- ters Kind.
|
|
}
|
|
|
|
\score{
|
|
\new ChoirStaff <<
|
|
\new Staff = "women" <<
|
|
\new Voice = "Soprano" <<\voiceOne \global\Song.Voices.Soprano >>
|
|
\new Voice = "Alto" <<\voiceTwo \global\Song.Voices.Alto >>
|
|
\new Lyrics \lyricsto Soprano {\Song.Lyrics.I}
|
|
\new Lyrics \lyricsto Soprano {\Song.Lyrics.II}
|
|
\new Lyrics \lyricsto Soprano {\Song.Lyrics.III}
|
|
>>
|
|
\new Staff = "men" <<
|
|
\clef bass
|
|
\new Voice = "Tenor" <<\voiceOne \global\Song.Voices.Tenor >>
|
|
\new Voice = "Bass" <<\voiceTwo \global\Song.Voices.Bass >>
|
|
>>
|
|
>>
|
|
\layout {
|
|
\context {
|
|
\Score
|
|
\omit BarNumber
|
|
}
|
|
}
|
|
}
|