]> git.donarmstrong.com Git - lilypond.git/blob - input/tutorial/flowing.ly
release: 1.3.124
[lilypond.git] / input / tutorial / flowing.ly
1 \header {
2         title = "The river is flowing";
3         composer = "Traditonal (?)";
4 }
5
6 \include "paper16.ly"
7
8 melody = \notes \relative c' {
9         \partial 8;
10         g8 |
11         c4 c8 d [es () d] c4 | f4 f8 g [es() d] c g |
12         c4 c8 d [es () d] c4 | d4 es8 d c4.
13         \bar "|.";
14 }
15
16 text = \lyrics {
17         The ri -- ver is flo- __ wing, flo -- wing and gro -- wing, the
18         ri -- ver is flo -- wing down to the sea.
19 }
20
21 accompaniment =\chords {
22         r8
23         c2:3- f:3-.7 d:min es4 c8:min r8
24         c2:min f:min7 g:7^3.5 c:min }
25
26 \score {
27         \simultaneous {
28 %         \accompaniment
29           \context ChordNames \accompaniment
30
31           \addlyrics
32              \context Staff = mel
33              {  \property Staff.noAutoBeaming = ##t
34                 \property Staff.automaticMelismata = ##t
35                 \melody }
36              \context Lyrics \text
37         }
38         \midi  { }
39         \paper { linewidth = 10.0\cm; }
40 }