]> git.donarmstrong.com Git - lilypond.git/commitdiff
Simplify regression test
authorKeith OHara <k-ohara5a5a@oco.net>
Wed, 15 May 2013 04:43:01 +0000 (21:43 -0700)
committerKeith OHara <k-ohara5a5a@oco.net>
Wed, 15 May 2013 04:43:58 +0000 (21:43 -0700)
input/regression/outside-staff-placement-directive.ly

index 81fad0a825647ee38c073b4e58f1160ddaff9c93..9bc9fdd0c388f242f85d5d1a610fcfe1da122342 100644 (file)
 \version "2.17.6"
 
 \header {
-  texidoc = "@code{VerticalAxisGroup} grobs can place outside staff objects
-using one of the four directives shown below.
-"
+  texidoc = "The @code{outside-staff-placement-directive} adjusts
+  the order in which objects are placed outside the staff."
 }
 
-
-\layout {
-  ragged-right = ##t
-  indent = 0.0
-  \context {
-    \Voice
-    \remove "Ligature_bracket_engraver"
-    \consists "Mensural_ligature_engraver"
-  }
-  \context {
-    \Score
-    \override SpacingSpanner.packed-spacing = ##t
-    \override PaperColumn.keep-inside-line = ##f
-  }
-}
-
-music = \context Voice {
-  \clef "petrucci-c4"
-  \set Staff.printKeyCancellation = ##f
-  \cadenzaOn % turn off bar lines
-  \accidentalStyle forget
-  \textLengthOn
-
-% ligaturae binaria
-
-  \[
-    b\breve^\markup { \column { { \bold "ligaturae binaria" } "BL" } }
-    g\longa
-    \]
-
-  \[
-    g\breve^\markup { "BL" }
-    b\longa
-    \]
-
-  \[
-    b\longa^\markup { "LL" }
-    g
-    \]
-
-  \[
-    g\longa^\markup { "LL" }
-    b
-    \]
-
-  \[
-    b\breve^\markup { "BB" }
-    g
-    \]
-
-  \[
-    g\breve^\markup { "BB" }
-    b
-    \]
-
-  \[
-    b\longa^\markup { "LB" }
-    g\breve
-    \]
-
-  \[
-    g\longa^\markup { "LB" }
-    b\breve
-    \]
-
-  \[
-    b1^\markup { "SS" }
-    g
-    \]
-
-  \[
-    g1^\markup { "SS" }
-    b
-    \]
-
-  \bar "|"
-}
+music = \transpose c c' { f2^"some" f^"words" f^"that" f^"overlap" }
 
 {
   \override Staff.VerticalAxisGroup.outside-staff-placement-directive =
     #'left-to-right-polite
-  \music
-}
+    \tempo left-to-right-polite \music }
 {
   \override Staff.VerticalAxisGroup.outside-staff-placement-directive =
     #'left-to-right-greedy
-  \music
-}
+    \tempo left-to-right-greedy \music }
 {
   \override Staff.VerticalAxisGroup.outside-staff-placement-directive =
     #'right-to-left-polite
-  \music
-}
+    \tempo right-to-left-polite \music }
 {
   \override Staff.VerticalAxisGroup.outside-staff-placement-directive =
     #'right-to-left-greedy
-  \music
-}
+    \tempo right-to-left-greedy \music }