]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/kortjakje.ly
release: 0.0.52
[lilypond.git] / input / kortjakje.ly
index 36cfbb124688b5aab0230e5d39053f5cfa6d6ad4..6386743fb38b5f34ee63dc31296c7b2230887cd4 100644 (file)
@@ -1,18 +1,20 @@
 % "Ah,  vous dirais-je, maman" (Mozart, KV 265)
 % 
-% \bare bones version. (written down from memory :-)
+% bare bones version. (written down from memory :-)
 % for lyrics, see twinkle.ly
 
-% the % is a co\mment.
+% the % is a comment.
 %
 % copyright: None
 %
-% declare \music (which will be in *one* \staff ) for the lead \voice
+% declare melody (which will be in *one* staff ) for the lead voice
+\version "0.0.52";
 
-melodie = \music {
+melodie = \melodic {
                                % switch Lilypond in note-mode
-       \clef\violin
-       \octave {}              % set the default \octave
+       \clef\violin;
+       \meter 2/4 ;
+       \octave  c';            % set the default octave
        % the default note duratino is 4
        %%% theme
        c c |                   % the '|' checks if there is a new measure here.
@@ -24,54 +26,34 @@ melodie = \music {
        g g|    f f|    e e|    d d|    g g|    f f|    e e|    d d|
        %%% var 1
          c r8 c8               % r8 means an 8th rest.
-                 (|            % \start a slur
-                               % NOTE: the slur\start should be directly after the note
+                 (|            % start a slur
+                               % NOTE: the slurstart should be directly after the note
                        )       % end a slur.
                          g r8 g8 (|    ) a r8 a8 (|    ) g r4 
          f r8 f8 (|    ) e4 r8 e8 (    |) d4 r8 d8 (|  ) c4 r4 
 }
 
                                % more of this.
-begeleiding =
-%      \clef bass              % bass-\clef
-%      \music {                % as you can see, the  sign obliges 
-                               % you to precede \keyword by a backslash: \
-       \music { 
-       \clef "bass"
-       \octave { ' }           % default \octave: 1 below the first \octave.
+begeleiding = \melodic{ 
+       \clef "bass";
+       \meter 2/4 ;
+       \octave  c';            % default octave: 1 below the first octave.
 
        %%% theme
-       'c                      % ' means one \octave lower.
-                               % Similarly: ' means one higher.
+       'c                      % ' 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 { ' }
+       \octave  'c ;
        e 'g    d 'g    c 'g    'b 'g   e 'g    d 'g    c 'g    'b 'g
        %%%% var 1
        r8 e8() c       r8 e8() c       r8 f8()c        r8 e8()c
        r8 d8()'b       r8 c8()'a       r8 'a8()'f      r8 'e8()'c
 }
 
-
-% create a \staff named bstaf
-bstaf = \staff {
-       \melodic
-       \music { begeleiding }  % use the declared \music
-       \music { \meter {2/4 }  }
-       }
-
-% another one
-vstaf = \staff {
-       \melodic
-               \music { melodie }
-                               % default \clef is violin \clef
-               \music { \meter {2/4 } }
-       }
-
-
-\score {
-       \staff { vstaf }
-       \staff { bstaf }
-       \paper {
+\score{
+       \staff{ melodicregs melodie }
+       \staff{ melodicregs begeleiding }
+       \paper{
                \unitspace 2.5\cm       % a whole note takes 2.5 \cm ideally.
        }
 }