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