How to start measure halfway?

≯℡__Kan透↙ 提交于 2019-12-30 17:32:13

问题


In my hymn, I need to start the first measure halfway through. It has a time of 3/4, but I have to insert two empty, non-showing eighth notes. How do I do that?

I've used o4 o4 c8[ d] below for the first measure, but lilypond does not like this. What's the right way?

Here's the line:

o4 o4 c8[ d] e4 e4 e8[ f] g4 g4 f8[ e] d4 d4 g8[ f] e2

回答1:


For upbeats, there's a special command \partial available. In your case, you should notate a quarter partial:

\relative c' {
    \time 3/4
    \partial 4
    c8 d | e4 e4 e8 f | g4 g4 f8 e | d4 d4 g8 f | e2
}

This results in:



来源:https://stackoverflow.com/questions/30678473/how-to-start-measure-halfway

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!