]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/collision-dots-move.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / collision-dots-move.ly
1 \version "2.19.21"
2 \header {
3
4     texidoc = "If dotted note heads must remain on the left side,
5 collision resolution moves the dots to the right."
6
7 }
8
9 \layout { ragged-right = ##t }
10
11 \relative {
12   \clef bass
13   \override Staff.NoteCollision.prefer-dotted-right = ##t
14   << <b, g' >4 ^"prefer-dotted-right = #t" \\ { c8. d16 } >>
15   << <b g' >4 \\ { d8. d16 } >>
16   << <b g' >4 \\ { f'8. d16 } >>
17   << <c a' >4 \\ { g'8. d16 } >>
18   \override Staff.NoteCollision.prefer-dotted-right = ##f
19   << <b g' >4 ^"prefer-dotted-right = #f" \\ { c8. d16 } >>
20   << <b g' >4 \\ { d8. d16 } >>
21   << <b g' >4 \\ { f'8. d16 } >>
22   << <c a' >4 \\ { g'8. d16 } >>
23 }