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