]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/clef-transposition-visibility.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / clef-transposition-visibility.ly
1 \version "2.19.21"
2
3 \header {
4
5     texidoc = "Clefs may be transposed.  By default, break-visibility
6 of ClefModifiers is derived from the associated clef, but it may
7 be overridden explicitly. The initial treble_8 clef should not have an
8 8, while the treble_8 clef after the tenor clef should.
9 These settings also need to apply to clefs on new lines."
10
11 }
12 \layout { ragged-right = ##t  }
13
14
15 \relative {
16   \override Staff.ClefModifier.break-visibility = #all-invisible
17
18   \clef "treble_8"
19   c'2 c |
20   c c | \break
21   c \clef "tenor" c |
22   \revert Staff.ClefModifier.break-visibility
23   \clef "treble_8"
24   c2 c |
25   c c | \break
26   c c
27 }
28