lilypond-1.0.13
[lilypond.git] / input / kortjakje.ly
blobaeeaa4f93acc63706b64f24a8ad4e0f3940ecea8
1 \header{
2 filename = "kortjakje.ly";
3 title = "Ah vous dirais-je maman (variations)";
4 description = "bare bones version. (written down from memory :-)";
5 composer = "Mozart KV 265";
6 enteredby = "HWN";
7 copyright = "public domain";
9 %{
10 Tested Features: example file with comments
13 \version "1.0.6";
16 % the % is a comment.
19 % declare melody (which will be in *one* staff ) for the lead voice
20 melodie = \notes \relative c' {
21 % switch Lilypond in note-mode
22 \clef"violin";
23 \time 2/4 ;
24 %%% theme
25 c4 c | % the | checks if there is a new measure here.
26 g' g|
27 a a|
29 g2| % g2 means a "g-1" pitched half-note
30 f4 f| e e| d d| c2
31 g'4 g| f f| e e| d d| g g| f f| e e| d d|
32 %%% var 1
33 c4 r8 c % r8 means an 8th rest.
34 (| % start a slur
35 % NOTE: the slurstart should be directly after the note
36 ) % end a slur.
37 g'4 r8 g8 () a4 r8 a8 () g4 r4
38 f4 r8 f8 () e4 r8 e8 (|) d4 r8 d8 () c4 r4
41 % more of this.
42 begeleiding = \notes \relative c {
43 \clef "bass";
44 \time 2/4 ;
46 %%% theme
47 c4 % before note means one octave lower.
48 % Similarly: after means one higher.
49 c' e c f c e c d b c a f g c,2 |
50 e'4 g, d' g, c g b g e' g, d' g, c g b g
51 %%%% var 1
52 r8 e'8() c4 r8 e8() c4 r8 f8() c4 r8 e8() c4
53 r8 d8() b4 r8 c8() a4 r8 a8() f4 r8 e8() c4
56 \score{
57 \type GrandStaff <
58 \melodie
59 \begeleiding
61 \paper{}
62 \midi{}