]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/keep-change-clefs-full-sized.ly
20491894924cf61d0a029e925f23c1fd1308dfc9
[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 = "tweaks-and-overrides, pitches"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
24   texidocfr = "
25 Le symbole imprimé lors d'un changement de clef est plus petit que la
26 clef initiale.  La taille s'ajuste à l'aide de la propriété
27 @code{full-size-change}.
28
29 "
30   doctitlefr = "Maintien de la taille de clef lors d'un changement"
31
32   texidoc = "
33 When a clef is changed, the clef sign displayed is smaller than the
34 initial clef.  This can be overridden with @code{full-size-change}.
35
36 "
37   doctitle = "Keep change clefs full sized"
38 } % begin verbatim
39
40
41 \relative c' {
42   \clef "treble"
43   c1
44   \clef "bass"
45   c1
46   \clef "treble"
47   c1
48   \override Staff.Clef #'full-size-change = ##t
49   \clef "bass"
50   c1
51   \clef "treble"
52   c1
53   \revert Staff.Clef #'full-size-change
54   \clef "bass"
55   c1
56   \clef "treble"
57   c1
58 }
59