]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/new/using-alternative-flag-styles.ly
NR 1.1.3 and Changes update w/ new Clef Appendix
[lilypond.git] / Documentation / snippets / new / using-alternative-flag-styles.ly
index 0e4ad3c261452095e920b89d17b45b9693ce3a9b..5932ba2565238653ccf9c8d8383122afcf062a9f 100644 (file)
@@ -1,21 +1,8 @@
-\version "2.15.15"
+\version "2.17.6"
 
 \header {
   lsrtags = "rhythms, tweaks-and-overrides"
 
-%% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
-  texidoces = "
-
-Se pueden imprimir estilos alternativos del corchete o gancho de las
-corcheas y figuras menores, mediante la sobreescritura de la propiedad
-@code{stencil} del objeto @code{Flag}.  Son valores vĂ¡lidos
-@code{modern-straight-flag} y @code{old-straight-flag}.
-
-"
-  doctitlees = "Uso de estilos alternativos para los corchetes"
-
-
-
   texidoc = "
 Alternative styles of flag on eighth and shorter notes can be displayed
 by overriding the @code{stencil} property of @code{Flag}.  Valid values
@@ -23,7 +10,7 @@ are @code{modern-straight-flag} and @code{old-straight-flag}.
 
 "
   doctitle = "Using alternative flag styles"
-} % begin verbatim
+}
 
 testnotes = {
   \autoBeamOff
@@ -34,13 +21,13 @@ testnotes = {
   \time 2/4
   \testnotes
 
-  \override Flag #'stencil = #modern-straight-flag
+  \override Flag.stencil = #modern-straight-flag
   \testnotes
 
-  \override Flag #'stencil = #old-straight-flag
+  \override Flag.stencil = #old-straight-flag
   \testnotes
 
-  \revert Flag #'stencil
+  \revert Flag.stencil
   \testnotes
 }