]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-folded-clef2.ly
cleanup. Separate into internal
[lilypond.git] / input / regression / spacing-folded-clef2.ly
1 \version "2.1.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} molecule callbacks we can
6 show where columns are in the score."
7 }
8
9 \score { \notes \relative c'' <<
10         \new Staff  { c4 c4 c4 \bar "|." }
11         \new Staff { \clef bass c,2 \clef treble  c'2 }
12         >>
13
14         \paper { raggedright = ##t
15
16         \translator { \ScoreContext
17           NonMusicalPaperColumn \override #'print-function = #Paper_column::brew_molecule
18           PaperColumn \override #'print-function = #Paper_column::brew_molecule   
19           NonMusicalPaperColumn \override #'font-family = #'roman
20           PaperColumn \override #'font-family = #'roman   
21
22         }
23         }}
24
25