]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/dot-column-engraver.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / dot-column-engraver.ly
1 \version "2.16.0"
2
3 \header {
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.
6 If Dot_column_engraver is moved to Voice, separate dot columns are engraved,
7 and these dots avoid notes in other voices."
8 }
9
10 music = \relative c'' { \time 3/4 << {
11   <d f g>4. c c b g f a <a b> a <a' b>
12 } \\ \times 1/2 {
13   <f, g b>2. a-- <a b> <g a>-. a2. a-- a a b <a b> \bar "|."
14 } >> }
15
16 \score{ \music }
17 \markup "move Dot_column_engraver to Voice :"
18 \score{ \music
19 \layout {
20   \context {\Staff \remove Dot_column_engraver}
21   \context {\Voice \consists Dot_column_engraver}
22 }}