]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/keep-change-clefs-full-sized.ly
0bbbff01840f69f9df1f472d03355e184e9e650d
[lilypond.git] / Documentation / snippets / keep-change-clefs-full-sized.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "pitches, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Cuando se produce un cambio de clave, el símbolo de clave se imprime a
15 un tamaño menor que la clave inicial.  Esto se puede ajustar con
16 @code{full-size-change}.
17
18 "
19   doctitlees = "Mantener el tamaño del símbolo en los cambios de clave"
20
21
22
23   texidoc = "
24 When a clef is changed, the clef sign displayed is smaller than the
25 initial clef.  This can be overridden with @code{full-size-change}.
26
27 "
28   doctitle = "Keep change clefs full sized"
29 } % begin verbatim
30
31
32 \relative c' {
33   \clef "treble"
34   c1
35   \clef "bass"
36   c1
37   \clef "treble"
38   c1
39   \override Staff.Clef #'full-size-change = ##t
40   \clef "bass"
41   c1
42   \clef "treble"
43   c1
44   \revert Staff.Clef #'full-size-change
45   \clef "bass"
46   c1
47   \clef "treble"
48   c1
49 }
50