]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-relative.ly
Doc-es: various updates.
[lilypond.git] / input / regression / part-combine-relative.ly
1 \version "2.19.23"
2
3 \header {
4   texidoc = "@code{\\partcombine} needs to be given pitches in their
5 final octaves, so if @code{\\relative} is used it must be applied
6 inside @code{\\partcombine}.  The pitches in @code{\\partcombine} are
7 unaffected by an outer @code{\\relative}, so that the printed output
8 shows the pitches that @code{\\partcombine} used.
9
10 The expected output of this test is three identical measures."
11 }
12
13 \new Staff {
14   \partcombine \absolute { e'2 f' } { c'2 d' }
15   \relative \partcombine { e'2 f' } { c'2 d' } % relative is ignored
16   \partcombine \relative { e'2 f } \relative { c'2 d }
17 }