]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-folded-clef2.ly
Doc-es: various updates.
[lilypond.git] / input / regression / spacing-folded-clef2.ly
1 \version "2.19.21"
2 \header {
3
4 texidoc = "A clef can be folded below notes in a different staff, if
5 there is space enough. With @code{Paper_column} stencil callbacks we
6 can show where columns are in the score."
7 }
8
9 \layout {
10     ragged-right = ##t
11
12     \context {
13         \Score
14         \override NonMusicalPaperColumn.stencil = #ly:paper-column::print
15         \override PaperColumn.stencil = #ly:paper-column::print   
16         \override NonMusicalPaperColumn.font-family = #'roman
17         \override PaperColumn.font-family = #'roman       
18
19     }
20 }
21                    
22 \relative <<
23     \new Staff  { c''4 c4 c4 c \bar "|." }
24     \new Staff { \clef bass c,2 \clef treble  c'2 }
25 >>
26