Using \autoChange with more than one voice: Difference between revisions
Appearance
m Lemzwerg moved page Using autochange with more than one voice to Using \autoChange with more than one voice without leaving a redirect |
mNo edit summary |
||
| Line 1: | Line 1: | ||
Here is a demonstration of how to use <code>\autoChange</code> with more than one voice. | |||
<lilypond version="2.24"> | <lilypond version="2.24"> | ||
Revision as of 14:37, 29 November 2025
Here is a demonstration of how to use \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
}
>>
}