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