我正在创建一个和弦图表,其中使用repeat volta 2 {};
重复前8个bar。我使用bar ".|"
强制左侧的条线。不是常规的,但这就是我想要的。
下一行从上述bar ".|"
开始。但是,正确添加了下一行,但是,重复部分末尾的重复符号不会渲染。
这是我的片段:
version "2.18.2"
score {
chordmode {
repeat volta 2 {
bar ".|" c1 | c |
break
bar ".|" d1 | d |
break
}
% uncomment one of the following two lines only
%This first one adds a new line correctly, but the bar line is wrong.
bar "|" c1 |
%This one add a new line, but the above repeat section has no ending repeat symbol
%bar ".|" c1 |
}
}
您遇到了一个已知问题:请参阅第3688页手动barlines覆盖重复barlines。
无论如何,只要您避免手动条(仅在第一个措施中需要它(,并使用重复命令而代替每次重复的命令,则您的摘要会罚款。另外,您可能要使用文档中解释的bar ".|:
。
version "2.18.2"
score {
chordmode {
repeat volta 2 {
bar ".|:"
c1 | c |
break
}
repeat volta 2 {
d1 | d |
break
}
c1 d |
}
}