]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/accidental-grouping.ly
Imported Upstream version 2.19.45
[lilypond.git] / input / regression / accidental-grouping.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "By setting @code{accidentalGrouping} to @code{'voice},
5 LilyPond will horizontally stagger the accidentals of octaves
6 in different voices as seen in this test's E-sharp.
7 "
8 }
9
10  \relative {
11    << { <gis'' cis eis gis>1 } \\
12       { eis,              } >>
13   \set Staff . accidentalGrouping = #'voice
14    << { <gis' cis eis gis>1 } \\
15       { eis,              } >>
16 }