]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-alternative-flag-styles.ly
1600fc1568f7f31818b36c0e3a3101c122083822
[lilypond.git] / Documentation / snippets / using-alternative-flag-styles.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.15.15
8 \version "2.15.15"
9
10 \header {
11 %% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
12   texidoces = "
13
14 Se pueden imprimir estilos alternativos del corchete o gancho de las
15 corcheas y figuras menores, mediante la sobreescritura de la propiedad
16 @code{flag} del objeto @code{Stem}.  Son valores vĂ¡lidos
17 @code{modern-straight-flag} y @code{old-straight-flag}.
18
19 "
20   doctitlees = "Uso de estilos alternativos para los corchetes"
21
22
23
24   lsrtags = "rhythms, tweaks-and-overrides"
25
26 %% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
27   texidoces = "
28
29 Se pueden imprimir estilos alternativos del corchete o gancho de las
30 corcheas y figuras menores, mediante la sobreescritura de la propiedad
31 @code{stencil} del objeto @code{Flag}.  Son valores vĂ¡lidos
32 @code{modern-straight-flag} y @code{old-straight-flag}.
33
34 "
35   doctitlees = "Uso de estilos alternativos para los corchetes"
36
37
38
39   texidoc = "
40 Alternative styles of flag on eighth and shorter notes can be displayed
41 by overriding the @code{stencil} property of @code{Flag}.  Valid values
42 are @code{modern-straight-flag} and @code{old-straight-flag}.
43
44 "
45   doctitle = "Using alternative flag styles"
46 } % begin verbatim
47
48 testnotes = {
49   \autoBeamOff
50   c8 d16 c32 d64 \acciaccatura { c8 } d64 r4
51 } % begin verbatim
52
53
54 \relative c' {
55   \time 2/4
56   \testnotes
57
58   \override Flag #'stencil = #modern-straight-flag
59   \testnotes
60
61   \override Flag #'stencil = #old-straight-flag
62   \testnotes
63
64   \revert Flag #'stencil
65   \testnotes
66 }
67