]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/dot-column-engraver.ly
Web-ja: update introduction
[lilypond.git] / input / regression / dot-column-engraver.ly
1 \version "2.19.21"
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 { \time 3/4 << {
11   <d'' f g>4. c c b g f a <a b> a <a' b>
12 } \\ \tuplet 2/1 {
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 }}