]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/generic-output-property.ly
b5b3b260257081847d8c94e84eb402fc963c8c98
[lilypond.git] / input / regression / generic-output-property.ly
1
2 \version "2.14.0"
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 \layout{ ragged-right = ##t }
12
13
14 \relative c''{
15   \applyOutput #'Bottom #(outputproperty-compatibility
16                  (make-type-checker 'note-head-interface)
17                  'extra-offset '(2 . 3))
18   c2
19   c
20   \applyOutput #'Score #(outputproperty-compatibility (make-type-checker 'mark-interface) 'extra-offset '(-1 . 4))
21   \mark A
22   d1
23   \mark \default
24   e
25 }
26
27