[ << Common notation ] | [Top][Contents][Index] | [ Fundamental concepts >> ] |
[ < Automatic and manual beams ] | [ Up : Single staff notation ] | [ Partial measure > ] |
3.1.7 Advanced rhythmic commands
Partial measure | ||
Tuplets | ||
Grace notes |
[ << Common notation ] | [Top][Contents][Index] | [ Fundamental concepts >> ] |
[ < Advanced rhythmic commands ] | [ Up : Advanced rhythmic commands ] | [ Tuplets > ] |
Partial measure
Music Glossary: anacrusis.
A pickup (or anacrusis) is entered with the keyword
\partial
. It is followed by a duration: ‘\partial 4’
is a quarter note pickup and ‘\partial 8’ an eighth note.
\relative { \partial 8 f''8 | c2 d | }
[ << Common notation ] | [Top][Contents][Index] | [ Fundamental concepts >> ] |
[ < Partial measure ] | [ Up : Advanced rhythmic commands ] | [ Grace notes > ] |
Tuplets
Music Glossary: note value, triplet.
Tuplets are made with the \tuplet
keyword. It
takes two arguments: a fraction and a piece of music. The
fraction is the number of tuplet notes over the number
of notes normally filling the same duration.
For triplets, there are three notes instead of two, so
triplets have 3/2 as their fraction.
\relative { \tuplet 3/2 { f''8 g a } \tuplet 3/2 { c8 r c } \tuplet 3/2 { f,8 g16[ a g a] } \tuplet 3/2 { d4 a8 } }
[ << Common notation ] | [Top][Contents][Index] | [ Fundamental concepts >> ] |
[ < Tuplets ] | [ Up : Advanced rhythmic commands ] | [ Multiple notes at once > ] |
Grace notes
Music Glossary: grace notes, acciaccatura, appoggiatura.
Grace notes are created with the \grace
command,
although they can also be created by prefixing a music expression
with the keyword \appoggiatura
or \acciaccatura
:
\relative { c''2 \grace { a32 b } c2 | c2 \appoggiatura b16 c2 | c2 \acciaccatura b16 c2 | }
See also
Notation Reference: Grace notes, Tuplets, Upbeats.
[ << Common notation ] | [Top][Contents][Index] | [ Fundamental concepts >> ] |
[ < Tuplets ] | [ Up : Advanced rhythmic commands ] | [ Multiple notes at once > ] |