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