How to start measure halfway?

2019-02-21 19:00发布

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?

enter image description here

Here's the line:

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

标签: lilypond
1条回答
家丑人穷心不美
2楼-- · 2019-02-21 19:24

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:

enter image description here

查看更多
登录 后发表回答