]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/keep-change-clefs-full-sized.ly
LSR updates
[lilypond.git] / Documentation / snippets / keep-change-clefs-full-sized.ly
diff --git a/Documentation/snippets/keep-change-clefs-full-sized.ly b/Documentation/snippets/keep-change-clefs-full-sized.ly
new file mode 100644 (file)
index 0000000..6d6ae87
--- /dev/null
@@ -0,0 +1,37 @@
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.18.0"
+
+\header {
+  lsrtags = "pitches, tweaks-and-overrides"
+
+  texidoc = "
+When a clef is changed, the clef sign displayed is smaller than the
+initial clef.  This can be overridden with @code{full-size-change}.
+
+"
+  doctitle = "Keep change clefs full sized"
+} % begin verbatim
+
+\relative c' {
+  \clef "treble"
+  c1
+  \clef "bass"
+  c1
+  \clef "treble"
+  c1
+  \override Staff.Clef.full-size-change = ##t
+  \clef "bass"
+  c1
+  \clef "treble"
+  c1
+  \revert Staff.Clef.full-size-change
+  \clef "bass"
+  c1
+  \clef "treble"
+  c1
+}