]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/tweaking-grace-layout-within-music.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / Documentation / snippets / tweaking-grace-layout-within-music.ly
index f5f3ce9046e53b26838f3cb94cbf847aa4459afe..65c5449fdaadd4d4e6b61e821e0c587655649bf1 100644 (file)
@@ -1,43 +1,20 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.1"
+\version "2.18.0"
 
 \header {
   lsrtags = "rhythms, tweaks-and-overrides"
 
-%% Translation of GIT committish: 5a33019d8b4a837f564eadd4979501ff07e9dfd5
-  texidoces = "
-
-La disposición de las expresiones de adorno se puede cambiar a lo
-largo de toda la música usando las funciones
-@code{add-grace-property} y @code{remove-grace-property}.  El
-ejemplo siguiente borra la definición de la dirección de la plica
-para esta nota de adorno, de manera que las plicas no siemmpre
-apuntan hacia arriba, y cambia la forma predeterminada de las
-cabezas a aspas.
-
-"
-
-  doctitlees = "Trucar la disposición de las notas de adorno dentro de la música"
-
-
-%% Translation of GIT committish: 13ac9d1dfbcc297166948ee396e9ade078d2446e
-  texidocde = "
-Das Layout von Verzierungsausdrücken kann in der Musik verändert
-werden mit den Funktionen @code{add-grace-property} und
-@code{remove-grace-property}.  Das folgende Beispiel definiert
-die Richtung von Hälsen (Stem) für diese Verzierung, sodass die
-Hälse nicht immer nach unten zeigen, und ändert den Standardnotenkopf
-in ein Kreuz.
-"
-  doctitlede = "Veränderung des Layouts von Verzierungen innerhalb der Noten"
-
   texidoc = "
 The layout of grace expressions can be changed throughout the music
 using the functions @code{add-grace-property} and
 @code{remove-grace-property}. The following example undefines the
 @code{Stem} direction for this grace, so that stems do not always point
-up, and changes the default note heads to crosses. 
+up, and changes the default note heads to crosses.
 
 "
   doctitle = "Tweaking grace layout within music"
@@ -45,12 +22,12 @@ up, and changes the default note heads to crosses.
 
 \relative c'' {
   \new Staff {
-    #(remove-grace-property 'Voice 'Stem 'direction)
-    #(add-grace-property 'Voice 'NoteHead 'style 'cross)
+    $(remove-grace-property 'Voice 'Stem 'direction)
+    $(add-grace-property 'Voice 'NoteHead 'style 'cross)
     \new Voice {
        \acciaccatura { f16 } g4
-       \grace { d16[ e] } f4
-       \appoggiatura { f,32[ g a] } e2
+       \grace { d16 e } f4
+       \appoggiatura { f,32 g a } e2
     }
   }
 }