]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/generic-output-property.ly
* lily/beam-engraver.cc: move new-beam-event to beam-event
[lilypond.git] / input / regression / generic-output-property.ly
1
2 \version "1.9.1"
3
4 \header{
5 texidoc="
6 As a last resort, the placement of grobs can be adjusted manually, by
7 setting the @code{extra-offset} of a grob.
8 "
9 }
10
11 \score{
12         \notes\relative c''{
13         \outputproperty #(make-type-checker 'note-head-interface) 
14                 #'extra-offset = #'(2 . 3)
15         c2
16         c
17         \context Score {
18                 \outputproperty #(make-type-checker 'mark-interface) 
19                 #'extra-offset = #'(-1 . 4)
20         }
21         \mark A
22         d1
23         \mark \default
24         e
25 }
26 \paper{
27         raggedright = ##t
28 }
29 }
30