Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to start measure halfway?

Tags:

lilypond

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
like image 930
bgmCoder Avatar asked Jun 06 '15 02:06

bgmCoder


1 Answers

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

like image 89
tohuwawohu Avatar answered Sep 21 '22 06:09

tohuwawohu