]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/outside-staff-placement-directive.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / outside-staff-placement-directive.ly
1 \version "2.17.6"
2
3 \header {
4   texidoc = "The @code{outside-staff-placement-directive} adjusts
5   the order in which objects are placed outside the staff."
6 }
7
8 music = \transpose c c' { f2^"some" f^"words" f^"that" f^"overlap" }
9
10 {
11   \override Staff.VerticalAxisGroup.outside-staff-placement-directive =
12     #'left-to-right-polite
13     \tempo left-to-right-polite \music }
14 {
15   \override Staff.VerticalAxisGroup.outside-staff-placement-directive =
16     #'left-to-right-greedy
17     \tempo left-to-right-greedy \music }
18 {
19   \override Staff.VerticalAxisGroup.outside-staff-placement-directive =
20     #'right-to-left-polite
21     \tempo right-to-left-polite \music }
22 {
23   \override Staff.VerticalAxisGroup.outside-staff-placement-directive =
24     #'right-to-left-greedy
25     \tempo right-to-left-greedy \music }