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