kommersbuch/src/songs/burschen_heraus.ly
Sebastian Hugentobler dbb9f99c7c
set minimum lilypond version to 2.18
this is because all works fine with that too and debian uses 2.18
2019-09-27 18:13:58 +02:00

77 lines
1.3 KiB
Plaintext

\version "2.18"
\include "articulate.ly"
\header {
title = "Burschen, heraus!"
composer = ""
poet = "Rasch"
tagline = ""
}
musicOne = \relative c' {
\time 6/8
\key c \major
\partial 4. c8 e g |
c4 r8 g (a) b |
c b a d4 d,8 |
g4 r8 \acciaccatura c b (a) b |
c4 g8 g4 f8 |
e4. \acciaccatura c'8 b (a) b |
c4 g8 g4 f8 |
e4 r8 c (d) e |
f4 c8 g'4 c,8 |
a'4 r8 g (a) b |
c4 g8 d'4 g,8 |
e'4. r4 r8 |
d4.\ff b4 b8 |
c4.\fermata s4 s8 |
\bar "|."
}
verseOne = \lyricmode {
Bur -- schen, her -- |
aus! Lasst es |
schal -- len von Haus zu |
Haus! Wenn der |
Ler -- che Sil -- ber -- |
schlag grüsst des |
Mai -- en er -- sten |
Tag, dann her -- |
aus, und fragt nicht |
viel, frisch mit |
Lied und Lau -- ten -- |
spiel! |
Bur -- schen, her -- |
aus! |
}
\book {
\score {
<<
\new Voice = "one" {
\musicOne
}
\new Lyrics \lyricsto "one" {
\verseOne
}
>>
\layout {
}
}
}
\book {
\score {
\unfoldRepeats \articulate
<<
\new Voice = "one" {
\musicOne
}
>>
\midi {
\tempo 4 = 130
}
}
}