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