]> git.donarmstrong.com Git - lilypond.git/blob - input/test/generic-output-property.ly
patch::: 1.3.118.jcn1
[lilypond.git] / input / test / generic-output-property.ly
1 \header{
2 texidoc="
3 As a last resort, the placement of items can be adjusted manually, by
4 setting the @code{extra-offset} of an output object.
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         \translator {
26                 \ScoreContext
27                 \consists "Mark_engraver";
28         }
29 }
30 }