]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-folded-clef2.ly
* lily/tuplet-bracket.cc (brew_molecule): call after_line_breaking
[lilypond.git] / input / regression / spacing-folded-clef2.ly
1 #(ly:set-option 'old-relative)
2 \version "2.1.7"
3 \header {
4
5 texidoc = "A clef can be folded below notes in a different staff, if
6 there is space enough. With @code{Paper_column} molecule callbacks we can
7 show where columns are in the score."
8 }
9
10 \score { \notes \relative c'' <<
11         \new Staff  { c4 c4 c4 \bar "|." }
12         \new Staff { \clef bass c,2 \clef treble  c'2 }
13         >>
14
15         \paper { raggedright = ##t
16
17         \translator { \ScoreContext
18           NonMusicalPaperColumn \override #'molecule-callback = #Paper_column::brew_molecule
19           PaperColumn \override #'molecule-callback = #Paper_column::brew_molecule        
20           NonMusicalPaperColumn \override #'font-family = #'roman
21           PaperColumn \override #'font-family = #'roman   
22
23         }
24         }}
25
26