]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/generic-output-property.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / regression / generic-output-property.ly
1
2 \version "2.1.26"
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             \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 \paper{
28         raggedright = ##t
29 }
30 }
31