]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/generic-output-property.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / generic-output-property.ly
index 92f14fe7292c7240f37f963fb9fe5db27c96593a..10c71d7024e14e27ada516d77d78af2240baa76d 100644 (file)
@@ -1,28 +1,27 @@
 
-\version "2.1.22"
+\version "2.11.51"
 
 \header{
-texidoc="
+  texidoc="
 As a last resort, the placement of grobs can be adjusted manually, by
 setting the @code{extra-offset} of a grob.
 "
 }
 
-\score{
-       \notes\relative c''{
-           \applyoutput #(outputproperty-compatibility (make-type-checker 'note-head-interface) 'extra-offset '(2 . 3))
-       c2
-       c
-       \context Score {
-           \applyoutput #(outputproperty-compatibility (make-type-checker 'mark-interface) 'extra-offset '(-1 . 4))
-       }
-       \mark A
-       d1
-       \mark \default
-       e
-}
-\paper{
-       raggedright = ##t
-}
+\layout{ ragged-right = ##t }
+
+
+\relative c''{
+  \applyOutput #'Bottom #(outputproperty-compatibility
+                (make-type-checker 'note-head-interface)
+                'extra-offset '(2 . 3))
+  c2
+  c
+  \applyOutput #'Score #(outputproperty-compatibility (make-type-checker 'mark-interface) 'extra-offset '(-1 . 4))
+  \mark A
+  d1
+  \mark \default
+  e
 }
 
+