如何让"["
-type 条跨五线谱连接?我在文档和代码片段回购中找不到任何有用的东西。这是说明问题的MWE。
\version "2.19.82"
rightHand = \relative c'' {
\bar "[|:"
\repeat volta 4 {
ees8 g, ees' ees aes, ees' a, f' |
}
}
leftHand = \relative c {
\bar "[|:"
\repeat volta 4 {
ees8 bes' ees e, b' e f, c' |
}
}
\score {
\context PianoStaff <<
\new Staff = RH {
\clef treble \rightHand
}
\new Staff = LH {
\clef bass \leftHand
}
>>
\layout {
\context {
\Score
%% Changing the defaults from engraver-init.ly
startRepeatType = #"[|:"
endRepeatType = #":|]"
doubleRepeatType = #":|][|:"
}
}
}
提前致谢!