]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/creating-a-sequence-of-notes-on-various-pitches.ly
Merge branch 'master' of ssh://jneem@git.sv.gnu.org/srv/git/lilypond into tmp
[lilypond.git] / input / lsr / creating-a-sequence-of-notes-on-various-pitches.ly
index 2a19a9959c257caa563f51b8c33e5eecabef805d..add095dc8e7c84f65f71624063a81e4610aa7856 100644 (file)
@@ -1,19 +1,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"
+\version "2.11.64"
 
 \header {
   lsrtags = "pitches"
- texidoc = "
+
+  texidoces = "
+En una música que tenga muchas apariciones de la
+misma secuencia de notas a distintas alturas, podría ser de
+utilidad la siguiente función musical.  Admite una nota, de la que
+sólo se utiliza su altura.  Las funciones de apoyo en Scheme se
+han tomado prestadas del documento de \"Consejos y trucos\" de la
+versión 2.10 del manual.  Este ejemplo crea las duraciones
+rítmicas que se usan a todo lo largo de «Marte», de «Los Planetas»
+de Gustav Holst.
+
+"
+  doctitlees = "Crear una secuencia de notas a distintas alturas"
+
+  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.
+at different pitches, the following music function may prove useful. 
+It takes a note, of which only the pitch is used.  The supporting
+Scheme functions were borrowed from the \"Tips and tricks\" document in
+the manual for version 2.10.   This example creates the rhythm used
+throughout Mars, from Gustav Holst's The Planets. 
+
+"
+  doctitle = "Creating a sequence of notes on various pitches"
+} % begin verbatim
 
-This example creates the rhythm used throughout Mars, from The Planets,
-by Gustav Holst.
-" }
-% begin verbatim
 #(define (make-note-req p d)
   (make-music 'NoteEvent
    'duration d
@@ -53,12 +69,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
+  }
 }
-