X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fkortjakje.ly;h=2baeadd3ca5cc463040c0f0a92e1e88a97e6937f;hb=b71bb68fd8b36ec4b00cfec5e620c53087983fc0;hp=0ba3de2f7806dee3b6f480924ee4398e332650d9;hpb=50802c7203c8e4a3eea1d7bf23064d60cd0d3ec7;p=lilypond.git diff --git a/input/kortjakje.ly b/input/kortjakje.ly index 0ba3de2f78..2baeadd3ca 100644 --- a/input/kortjakje.ly +++ b/input/kortjakje.ly @@ -1,64 +1,60 @@ -%{MudelaHeader - - filename: kortjakje.ly - title: Ah, vous dirais-je, maman (variations) - description: bare bones version. (written down from memory :-) - composers: Mozart, KV 265 - entered-by: HWN - copyright: none +\header{ +filename = "kortjakje.ly"; +title = "Ah vous dirais-je maman (variations)"; +description = "bare bones version. (written down from memory :-)"; +composer = "Mozart KV 265"; +enteredby = "HWN"; +copyright = "public domain"; +} +%{ +Tested Features: example file with comments - Tested Features: example file with comments -EndMudelaHeader %} -\version "0.1.0"; +\version "1.0.4"; % the % is a comment. % declare melody (which will be in *one* staff ) for the lead voice -melodie = \melodic { +melodie = \notes \relative c' { % switch Lilypond in note-mode \clef"violin"; - \meter 2/4 ; - \octave c'; % set the default octave - % the default note duratino is 4 + \time 2/4 ; %%% theme - c4 c | % the '|' checks if there is a new measure here. - g g| + c4 c | % the | checks if there is a new measure here. + g' g| a a| g2| % g2 means a "g-1" pitched half-note f4 f| e e| d d| c2 - g4 g| f f| e e| d d| g g| f f| e e| d d| + g'4 g| f f| e e| d d| g g| f f| e e| d d| %%% var 1 c4 r8 c % r8 means an 8th rest. (| % start a slur % NOTE: the slurstart should be directly after the note ) % end a slur. - g4 r8 g8 () a4 r8 a8 () g4 r4 + g'4 r8 g8 () a4 r8 a8 () g4 r4 f4 r8 f8 () e4 r8 e8 (|) d4 r8 d8 () c4 r4 } % more of this. -begeleiding = \melodic{ +begeleiding = \notes \relative c { \clef "bass"; - \meter 2/4 ; - \octave c'; % default octave: 1 below the first octave. + \time 2/4 ; %%% theme - 'c4 % ' before note means one octave lower. - % Similarly: ' after means one higher. - c e c f c e c d 'b c 'a 'f 'g 'c2 | - \octave c ; - e4 'g d 'g c 'g 'b 'g e 'g d 'g c 'g 'b 'g + c4 % before note means one octave lower. + % Similarly: after means one higher. + c' e c f c e c d b c a f g c,2 | + e'4 g, d' g, c g b g e' g, d' g, c g b g %%%% var 1 - r8 e8() c4 r8 e8() c4 r8 f8() c4 r8 e8() c4 - r8 d8() 'b4 r8 c8() 'a4 r8 'a8() 'f4 r8 'e8() 'c4 + r8 e'8() c4 r8 e8() c4 r8 f8() c4 r8 e8() c4 + r8 d8() b4 r8 c8() a4 r8 a8() f4 r8 e8() c4 } \score{ - \melodic < \id "Piano" ""; \multi 3; + \type GrandStaff < \melodie \begeleiding >