Trill {gm} | R Documentation |
Create Trill
Object
Description
Create a Trill
object to represent a trill ornament.
Usage
Trill(i, j = NULL, to = NULL)
Arguments
i |
A single positive integer, which represents the position of the trill in a musical line. |
j |
Optional. A single positive integer, which indicates the end position of the trill line in a musical line. If not provided, the trill will appear as a tr symbol above only the trilled note. Otherwise, it will appear as a tr~~~ symbol above the notes between the start and end positions. |
to |
Optional. A single character or a single positive integer, which indicates the musical line where to add the trill. |
Value
A list of class Trill
.
See Also
+.Music()
for adding a trill to a Music
object.
Examples
# Create a trill
trill <- Trill(1, 3)
trill
# Add it to a `Music`
music <- Music() + Meter(4, 4) + Line(c("C4", "D4", "E4", "F4")) + trill
music
# Generate the music score
if (interactive()) {
show(music)
}
[Package gm version 2.0.0 Index]