]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/skyline-vertical-placement.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / skyline-vertical-placement.ly
1 \header {
2   texidoc = "Grobs that have outside-staff-priority set are positioned
3 using a skyline algorithm so that they don't collide with other objects."
4 }
5
6 \layout {ragged-right = ##t}
7
8 \version "2.19.21"
9 \relative {
10   \override Score.PaperColumn.keep-inside-line = ##f
11   \override TextScript.outside-staff-priority = #2
12   \override DynamicLineSpanner.outside-staff-priority = #1
13   c'''
14   \once \override TextScript.self-alignment-X = #CENTER
15   a,^"this doesn't collide with the c"
16   b^"this goes above the previous markup"
17   a8_"this goes below the dynamic"
18   a\f
19 }