]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/creating-a-sequence-of-notes-on-various-pitches.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[lilypond.git] / input / lsr / creating-a-sequence-of-notes-on-various-pitches.ly
index 4c5ce87e70834d454e1f277558e6a7510af7e954..726cf8422aa10fe9dfebeaae5618f5fc55662455 100644 (file)
@@ -1,15 +1,16 @@
-%% Do not edit this file; it is auto-generated from LSR!
-%% Tags: pitches
-\version "2.11.35"
+%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% This file is in the public domain.
+\version "2.11.38"
 
-\header { texidoc = "
+\header {
+  lsrtags = "pitches"
+ texidoc = "
 In music that contains many occurrences of the same sequence of notes
 at different pitches, you can use the following music function. It
 takes a note, of which the pitch is used. The supporting Scheme
-functions were borrowed from the Tips and Tricks document in the manual.
-
-This example creates the rhythm used throughout Mars, from The Planets,
-by Gustav Holst.
+functions were borrowed from the Tips and Tricks document in the
+manual. This example creates the rhythm used throughout Mars, from
+Gustav Holst's The Planets. 
 " }
 % begin verbatim
 #(define (make-note-req p d)
@@ -51,12 +52,10 @@ rhythm = #(define-music-function (parser location note) (ly:music?)
           ))))
 
 \score {
-   \new Staff {
-       \time 5/4
-
-       \rhythm c'
-       \rhythm c''
-       \rhythm g
-   }
+  \new Staff {
+    \time 5/4
+    \rhythm c'
+    \rhythm c''
+    \rhythm g
+  }
 }
-