]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/keep-change-clefs-full-sized.ly
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[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.17.11"
8
9 \header {
10   lsrtags = "pitches, tweaks-and-overrides"
11
12   texidoc = "
13 When a clef is changed, the clef sign displayed is smaller than the
14 initial clef.  This can be overridden with @code{full-size-change}.
15
16 "
17   doctitle = "Keep change clefs full sized"
18 } % begin verbatim
19
20
21 \relative c' {
22   \clef "treble"
23   c1
24   \clef "bass"
25   c1
26   \clef "treble"
27   c1
28   \override Staff.Clef.full-size-change = ##t
29   \clef "bass"
30   c1
31   \clef "treble"
32   c1
33   \revert Staff.Clef.full-size-change
34   \clef "bass"
35   c1
36   \clef "treble"
37   c1
38 }