Score コンテキストでの自動連桁
Score
コンテキストに設定された自動連桁の設定は全ての譜に適用されますが、Staff
や Voce
レベルで設定することもできます。
\relative c'' {
\time 5/4
% Set default beaming for all staves
\set Score.baseMoment = \musicLength 8
\set Score.beatStructure = 3,4,3
<<
\new Staff {
c8 c c c c c c c c c
}
\new Staff {
% Modify beaming for just this staff
\set Staff.beatStructure = 6,4
c8 c c c c c c c c c
}
\new Staff {
% Inherit beaming from Score context
<<
{
\voiceOne
c8 c c c c c c c c c
}
% Modify beaming for this voice only
\new Voice {
\voiceTwo
\set Voice.beatStructure = 6,4
a8 a a a a a a a a a
}
>>
}
>>
}