]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/dynamics-empty.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / dynamics-empty.ly
1 \version "2.19.12"
2
3 \header {
4   texidoc = "An empty Dynamics context does not confuse the spacing."
5 }
6
7 \score {
8   \new PianoStaff <<
9     \new Dynamics { s1}
10     \new Dynamics { s2\f\> s4 s\!\p }
11     \new Staff {d'2 g''}
12     \new Dynamics { s1 }
13     \new Dynamics { s2\f\> s4 s\!\p }
14     \new Dynamics { s1 }
15     \new Staff {d'2 g''}
16     \new Dynamics { s1 }
17     \new Dynamics { s2\sustainOn s4 s\sustainOff }
18   >>
19   \layout {
20     \context {
21       \Dynamics
22       \override VerticalAxisGroup.nonstaff-relatedstaff-spacing
23         = #'((minimum-distance . 5))
24     }
25   }
26 }