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