]> git.donarmstrong.com Git - lilypond.git/blob - input/kortjakje.ly
release: 0.0.57
[lilypond.git] / input / kortjakje.ly
1 % "Ah,  vous dirais-je, maman" (Mozart, KV 265)
2
3 % bare bones version. (written down from memory :-)
4 % for lyrics, see twinkle.ly
5
6 % the % is a comment.
7 %
8 % copyright: None
9 %
10 \version "0.0.54";
11
12 % declare melody (which will be in *one* staff ) for the lead voice
13 melodie = \melodic {
14                                 % switch Lilypond in note-mode
15         \clef\violin;
16         \meter 2/4 ;
17         \octave  c';            % set the default octave
18         % the default note duratino is 4
19         %%% theme
20         c c |                   % the '|' checks if there is a new measure here.
21         g g|
22         a a|
23
24         g2|     % g2 means a "g-1" pitched half-note 
25         f f|    e e|    d d|  c2
26         g g|    f f|    e e|    d d|    g g|    f f|    e e|    d d|
27         %%% var 1
28           c r8 c8               % r8 means an 8th rest.
29                   (|            % start a slur
30                                 % NOTE: the slurstart should be directly after the note
31                         )       % end a slur.
32                           g r8 g8 (|    ) a r8 a8 (|    ) g r4 
33           f r8 f8 (|    ) e4 r8 e8 (    |) d4 r8 d8 (|  ) c4 r4 
34 }
35
36                                 % more of this.
37 begeleiding = \melodic{ 
38         \clef "bass";
39         \meter 2/4 ;
40         \octave  c';            % default octave: 1 below the first octave.
41
42         %%% theme
43         'c                      % ' before note means one octave lower.
44                                 % Similarly: ' after means one higher.
45            c    e c     f c     e c     d 'b    c 'a    'f 'g   'c2
46         \octave  'c ;
47         e 'g    d 'g    c 'g    'b 'g   e 'g    d 'g    c 'g    'b 'g
48         %%%% var 1
49         r8 e8() c       r8 e8() c       r8 f8()c        r8 e8()c
50         r8 d8()'b       r8 c8()'a       r8 'a8()'f      r8 'e8()'c
51 }
52
53 \score{
54         \staff{ melodicregs melodie }
55         \staff{ melodicregs begeleiding }
56         \paper{
57                 \unitspace 2.5\cm       % a whole note takes 2.5 \cm ideally.
58         }
59 }
60