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