music-score-1.6: Musical score and part representation.

Portabilitynon-portable (TF,GNTD)
Stabilityexperimental
Maintainerhans@hanshoglund.se
Safe HaskellNone

Music.Score.Meta.Fermata

Contents

Description

 

Synopsis

Fermata type

data Fermata Source

Represents a fermata.

TODO where is the fermata added if the score contains multiple notes. Always the last?

Adding fermatas to scores

fermata :: (HasMeta a, HasPart' a, HasOnset a, HasOffset a) => Fermata -> a -> aSource

Add a fermata over the whole score.

fermataDuring :: (HasMeta a, HasPart' a) => Span -> Fermata -> a -> aSource

Add a fermata to the given score.

Extracting fermatas

withFermata :: (Fermata -> Score a -> Score a) -> Score a -> Score aSource

Extract fermatas in from the given score, using the given default fermata.