]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/backend-excercise.ly
db00b35ecb4260966fdacc20e09c053d63d0da7d
[lilypond.git] / input / regression / backend-excercise.ly
1 \header {
2   texidoc = "Excercise all output functions"
3 }
4
5 \version "2.5.0"
6
7 \paper { raggedright = ##t }
8
9 \relative {
10   \new StaffGroup \new PianoStaff <<
11     \new Staff <<
12       {
13         #(set-octavation 1)
14         \times 2/3 {  c'8[\< f]( f''\!)  }
15         #(set-octavation 0)
16         <f \5>
17       }
18       \skip 1 >>
19     \new Staff \relative c'' {
20       \makeClusters { <g a>8 <e a> }
21       \override Glissando #'style = #'zigzag
22       f2 \glissando f'
23       \override NoteHead #'print-function = #Note_head::brew_ez_stencil
24       \override NoteHead #'Y-extent-callback = #'()
25       \override NoteHead #'X-extent-callback = #'()
26       f e 
27     }
28   >>
29 }