]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/barline.ly
release: 1.1.68
[lilypond.git] / input / bugs / barline.ly
1 \header {
2         title = "The river is flowing";
3         composer = "Traditonal (?)";
4 }
5
6 melody = \notes \relative c' {
7         \partial 8;
8         g8 |
9         c4 c8 d [es () d] c4 | f4 f8 g [es() d] c g |
10         c4 c8 d [es () d] c4 | d4 es8 d c4.
11         \bar "|.";\clef bass;
12 }
13
14 text = \lyrics {
15         The ri -- ver is flo -- wing, flo -- wing and gro -- wing, the
16         ri -- ver is flo -- wing down to the sea.
17 }
18
19 accompaniment =\chords  \sequential {
20         r8
21         c2-min f-min 7 d-min es4 c8-min r8
22         c2-min f-min 7 g c-min
23 }
24
25 \score {
26         \simultaneous {
27           \context ChordNames \accompaniment
28           \addlyrics
29              \context Staff {
30                 \property Voice.beamAuto = "0"
31                 \property Staff.automaticMelismas = "1"
32                 \melody }
33              \context LyricVoice \text
34         }
35         \paper { }
36         \midi  { }
37 }