]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/keep-change-clefs-full-sized.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "pitches, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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 \relative c' {
32   \clef "treble"
33   c1
34   \clef "bass"
35   c1
36   \clef "treble"
37   c1
38   \override Staff.Clef #'full-size-change = ##t
39   \clef "bass"
40   c1
41   \clef "treble"
42   c1
43   \revert Staff.Clef #'full-size-change
44   \clef "bass"
45   c1
46   \clef "treble"
47   c1
48 }
49