]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/collision-dots-move.ly
Merge remote branch 'origin' into release/unstable
[lilypond.git] / input / regression / collision-dots-move.ly
1 \version "2.14.0"
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 c {
12   \clef bass
13   \override Staff.NoteCollision #'prefer-dotted-right = ##t
14   s1*0^"prefer-dotted-right = #t"
15   << <b g' >4 \\ { c8. d16 } >>
16   << <b g' >4 \\ { d8. d16 } >>
17   << <b g' >4 \\ { f'8. d16 } >>
18   << <c a' >4 \\ { g'8. d16 } >>
19   \override Staff.NoteCollision #'prefer-dotted-right = ##f
20   s1*0^"prefer-dotted-right = #f"
21   << <b g' >4 \\ { c8. d16 } >>
22   << <b g' >4 \\ { d8. d16 } >>
23   << <b g' >4 \\ { f'8. d16 } >>
24   << <c a' >4 \\ { g'8. d16 } >>
25 }