]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-folded-clef2.ly
95ce23f02399b067ad4e7aee131d61ffe3328499
[lilypond.git] / input / regression / spacing-folded-clef2.ly
1 \header {
2
3 texidoc = "A clef can be folded below notes in a different staff, if
4 there is space enough. With Paper_column molecule callbacks we can
5 show where columns are in the score."
6 }
7
8 \score { \notes \relative c'' <
9         \context Staff = SA  { c4 c4 c4 \bar "|." }
10         \context Staff = SB { \clef bass c,2 \clef treble  c'2 }
11         >
12
13         \paper { linewidth = -1.
14
15         \translator { \ScoreContext
16           NonMusicalPaperColumn \override #'molecule-callback = #Paper_column::brew_molecule
17           PaperColumn \override #'molecule-callback = #Paper_column::brew_molecule        
18           NonMusicalPaperColumn \override #'font-family = #'roman
19           PaperColumn \override #'font-family = #'roman   
20
21         }
22         }}
23