作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图将按顺序排列的音符连接成一个和弦(有效地模拟慢速琶音):
{
\clef bass
r8
<<
\relative c {
<<
\autoBeamOff \tieDown
{cis8~ cis4~ cis8}
{s32 e16.~ e4~ e8}
{s16 fisis16~ fisis4~ fisis8}
{s16. ais32~ ais4~ ais8}
{s8 cis4 cis8}
>>
}
\\
\relative c{
\mergeDifferentlyDottedOn cis32[ e fisis ais]
}
>>
}
最佳答案
您要查找的命令是 \set tieWaitForNote = ##t
.这是您的示例的外观:
{
\clef bass
r8
<<
\relative c {
<<
\set tieWaitForNote = ##t
\autoBeamOff \tieDown
{cis8~ cis4~ cis8}
{s32 e16.~ e4~ e8}
{s16 fisis16~ fisis4~ fisis8}
{s16. ais32~ ais4~ ais8}
{s8 cis4 cis8}
>>
}
\\
\relative c{
\mergeDifferentlyDottedOn cis32[ e fisis ais]
}
>>
}
\tieNeutral
为和弦设置一个
minimum-length
这样上领带看起来更好:
{
\clef bass
r8
<<
\relative c {
<<
\set tieWaitForNote = ##t
\autoBeamOff \tieDown
{cis8~ cis4~ cis8}
{s32 e16.~ e4~ e8}
{s16 fisis16~ fisis4~ fisis8}
{s16.
\override Staff.Tie.minimum-length = #5.2
ais32~ ais4~ ais8}
{s8 \tieNeutral cis4 cis8}
>>
}
\\
\relative c{
\mergeDifferentlyDottedOn cis32[ e fisis ais]
}
>>
}
关于lilypond - 如何将不同时间点的音符连成和弦?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60310349/
我是一名优秀的程序员,十分优秀!