blob: 887e5b0e1259e1f64319f81e5976d397fcdea1ef (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
% 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 {
%% Translation of GIT committish: 8b93de6ce951b7b14bc7818f31019524295b990f
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"
= "rhythms, tweaks-and-overrides"
= "
Alternative styles of flag on eighth and shorter notes can be displayed
by overriding the @code{stencil} property of @code{Flag}. Valid values
are @code{modern-straight-flag} and @code{old-straight-flag}.
"
= "Using alternative flag styles"
} % begin verbatim
testnotes = {
\autoBeamOff
c8 d16 c32 d64 \acciaccatura { c8 } d64 r4
}
\relative c' {
\time 2/4
\testnotes
\override Flag #'stencil = #modern-straight-flag
\testnotes
\override Flag #'stencil = #old-straight-flag
\testnotes
\revert Flag #'stencil
\testnotes
}
|