LEFT | RIGHT |
1 \version "2.17.10" | 1 \version "2.17.11" |
2 | 2 |
3 \header { | 3 \header { |
4 texidoc = "Dot Columns are engraved in the Staff by default, | 4 texidoc = "Dot Columns are engraved in the Staff by default, |
5 enabling dots to move vertically to make room for dots from another voice. | 5 enabling dots to move vertically to make room for dots from another voice. |
6 If Dot_column_engraver is moved to Voice, separate dot columns are engraved, | 6 If Dot_column_engraver is moved to Voice, separate dot columns are engraved, |
7 and these dots avoid notes in other voices." | 7 and these dots avoid notes in other voices." |
8 } | 8 } |
9 | 9 |
10 music = \relative c'' { \time 3/4 << { | 10 music = \relative c'' { \time 3/4 << { |
11 <d f g>4. c c b g f a <a b> a <a' b> | 11 <d f g>4. c c b g f a <a b> a <a' b> |
12 } \\ \tuplet 2/1 { | 12 } \\ \tuplet 2/1 { |
13 <f, g b>2. a-- <a b> <g a>-. a2. a-- a a b <a b> \bar "|." | 13 <f, g b>2. a-- <a b> <g a>-. a2. a-- a a b <a b> \bar "|." |
14 } >> } | 14 } >> } |
15 | 15 |
16 \score{ \music } | 16 \score{ \music } |
17 \markup "move Dot_column_engraver to Voice :" | 17 \markup "move Dot_column_engraver to Voice :" |
18 \score{ \music | 18 \score{ \music |
19 \layout { | 19 \layout { |
20 \context {\Staff \remove "Dot_column_engraver"} | 20 \context {\Staff \remove "Dot_column_engraver"} |
21 \context {\Voice \consists "Dot_column_engraver"} | 21 \context {\Voice \consists "Dot_column_engraver"} |
22 }} | 22 }} |
LEFT | RIGHT |