Using \autoChange with more than one voice: Difference between revisions
Appearance
No edit summary |
m New category |
||
| Line 39: | Line 39: | ||
[[Category:Staff notation]] | [[Category:Staff notation]] | ||
[[Category:Keyboards]] | [[Category:Keyboards]] | ||
[[Category:Included in the official documentation]][[Category:Snippet]] | [[Category:Included in the official documentation]] | ||
[[Category:Snippet]] | |||
Revision as of 23:34, 21 November 2025
Using autochange with more than one voice.
\version "2.24"
\score {
\new PianoStaff
<<
\new Staff = "up" {
<<
\set Timing.beamExceptions = #'()
\set Timing.beatStructure = #'(4)
\new Voice {
\voiceOne
\autoChange
\relative c' {
g8 a b c d e f g
g,8 a b c d e f g
}
}
\new Voice {
\voiceTwo
\autoChange
\relative c' {
g8 a b c d e f g
g,,8 a b c d e f g
}
}
>>
}
\new Staff = "down" {
\clef bass
}
>>
}