]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/keep-change-clefs-full-sized.ly
Doc: NR Pitches.itely - Clef - updated snippets and text
[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
deleted file mode 100644 (file)
index 6d6ae87..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-%% 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
-}