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