]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/using-alternative-flag-styles.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / using-alternative-flag-styles.ly
index 749cf4909148c2028c4f68e20182f036494d276c..9c0ac0b3ba26c272d65b2d931fbfabf6188200b3 100644 (file)
@@ -1,17 +1,19 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.12.2"
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.15.15
+\version "2.15.15"
 
 \header {
-  lsrtags = "rhythms, tweaks-and-overrides"
-
-%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
   texidoces = "
 
 Se pueden imprimir estilos alternativos del corchete o gancho de las
 corcheas y figuras menores, mediante la sobreescritura de la propiedad
-@code{flag} del objeto @code{Stem}.  Son valores vĂ¡lidos
+@code{stencil} del objeto @code{Flag}.  Son valores vĂ¡lidos
 @code{modern-straight-flag} y @code{old-straight-flag}.
 
 "
@@ -19,15 +21,18 @@ corcheas y figuras menores, mediante la sobreescritura de la propiedad
 
 
 
+  lsrtags = "rhythms, tweaks-and-overrides"
+
   texidoc = "
 Alternative styles of flag on eighth and shorter notes can be displayed
-by overriding the @code{flag} property of @code{Stem}.  Valid values
+by overriding the @code{stencil} property of @code{Flag}.  Valid values
 are @code{modern-straight-flag} and @code{old-straight-flag}.
 
 "
   doctitle = "Using alternative flag styles"
 } % begin verbatim
 
+
 testnotes = {
   \autoBeamOff
   c8 d16 c32 d64 \acciaccatura { c8 } d64 r4
@@ -37,13 +42,13 @@ testnotes = {
   \time 2/4
   \testnotes
 
-  \override Stem #'flag = #modern-straight-flag
+  \override Flag #'stencil = #modern-straight-flag
   \testnotes
 
-  \override Stem #'flag = #old-straight-flag
+  \override Flag #'stencil = #old-straight-flag
   \testnotes
 
-  \revert Stem #'flag
+  \revert Flag #'stencil
   \testnotes
 }