Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个跨越两个小节的渐强。
以下代码
\relative c' { c4\pp\< c4 c4 c4 | c1\ff }
编译为
这几乎是我想要的。但是,我希望 ff 标记出现在更靠右的位置,就在下一个小节线的正下方,以表明最后一个全音的音量也应该逐渐增加。
我怎样才能做到这一点?
您可以使用间隔休止符将强音“移动”到第二个小节的末尾:
\relative c' { c4\pp\< c4 c4 c4 | << c1 { s2. s4\ff } >> }
这导致: