我怎样才能让"["-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 = #":|][|:"
}
}
}

提前感谢!
发布于 2018-12-13 00:01:00
不幸的是,这个问题似乎没有容易的解决办法。有一个名为repeatBarGroupAlter的自定义函数可以在http://lsr.di.unimi.it/LSR/Item?id=991上完成,但是它有点麻烦,因为它要求您手动设置‘角翼’之间的距离以及它们的偏移量。

https://stackoverflow.com/questions/53732532
复制相似问题