]> git.donarmstrong.com Git - lilypond.git/blob - input/test/twinkle-as5.ly
release: 1.3.118
[lilypond.git] / input / test / twinkle-as5.ly
1 \header{
2 filename =      "twinkle.ly";
3 title =                 "Twinkle Twinkle Little Star";
4 composer =      "Traditional";
5 enteredby =     "hwn and jcn";
6 copyright =     "public domain";
7 }
8
9 \version "1.3.117";
10
11 \include "paper-as5.ly"
12
13 melody =  \notes \relative c'' {
14         \time 2/4;
15         c4 c | g' g | a a | g g |
16 %{
17         f f | e e | d d8.( e16 | )c2 |
18
19         g'4 g | f f | e e | d d |
20         g g | f f | e( e8. f16 | e4 )d |
21
22         c c | g' g | a a | g g |
23         f f | e e | d d8.( e16 | )c2 |
24 %}
25 }
26
27 accompany =  \notes \relative c {
28         \clef "bass";
29         \time 2/4;
30         c4 c' | e c | f c | e c | 
31 %{
32         d b | c a | f g | c,2 | 
33
34         e'4 g, | d' g, | c g | b g | 
35         e' g, | d' g, | c c8.( d16 | c4 )b |
36
37         c, c' | e c | f c | e c | 
38         d b | c a | f g | c,2 
39 %}
40 }
41
42
43 text =  \lyrics{
44         Twin -- kle, twin -- kle, lit -- tle star, " "
45 %{
46         How I won -- der what you  " " are.
47         Up a -- bove the world so high, " "
48         Like a dia -- mond in the  " " sky. " "
49         Twin -- kle, twin -- kle, lit -- tle star, " "
50         How I won -- der what you  " " are!
51 %}
52 }
53
54 \score{
55         \context GrandStaff <
56                 \addlyrics
57                         \context Staff=upper \melody
58                 \context Lyrics=between \text
59                 \context Staff=lower \accompany 
60         >
61         \paper{
62                 \translator { \GrandStaffContext \accepts "Lyrics"; }
63                 indent=4.0\char;
64                 linewidth=78.0\char;
65         }
66 }
67