]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/clef-oct-visibility.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / clef-oct-visibility.ly
1 \version "2.17.6"
2
3 \header {
4
5     texidoc = "Octavation signs may be added to clefs.  By default,
6 their break-visibility 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 c' {
16   \override Staff.OctavateEight.break-visibility = #all-invisible
17
18   \clef "treble_8"
19   c2 c |
20   c c | \break
21   c \clef "tenor" c |
22   \revert Staff.OctavateEight.break-visibility
23   \clef "treble_8"
24   c2 c |
25   c c | \break
26   c c
27 }
28