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