]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/keep-change-clefs-full-sized.ly
6d6ae87a8e5cdb519859b9802c2b24f6169e27df
[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.di.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.18.0"
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 \relative c' {
21   \clef "treble"
22   c1
23   \clef "bass"
24   c1
25   \clef "treble"
26   c1
27   \override Staff.Clef.full-size-change = ##t
28   \clef "bass"
29   c1
30   \clef "treble"
31   c1
32   \revert Staff.Clef.full-size-change
33   \clef "bass"
34   c1
35   \clef "treble"
36   c1
37 }