]> git.donarmstrong.com Git - lilypond.git/blob - input/tutorial/flowing.ly
597dd2bed8d840263dfafba4ad4989f0aa6944fe
[lilypond.git] / input / tutorial / flowing.ly
1 \header {
2         title = "The river is flowing";
3         composer = "Traditonal (?)";
4 }
5 \include "paper16.ly"
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 "|.";
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 {
20         r8
21         c2:3- f:3-.7 d:min es4 c8:min r8
22         c2:min f:min7 g:7^3.5 c:min }
23
24 \score {
25         \simultaneous {
26 %         \accompaniment
27           \context ChordNames \accompaniment
28
29           \addlyrics
30              \context Staff = mel
31              {  \property Staff.noAutoBeaming = "1"
32                 \property Staff.automaticMelismas = "1"
33                 \melody }
34              \context Lyrics \text
35         }
36         \midi  { }
37         \paper { linewidth = 10.0\cm; }
38 }