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

Copyright(c) Hans Hoglund 2012-2014
LicenseBSD-style
Maintainerhans@hanshoglund.se
Stabilityexperimental
Portabilitynon-portable (TF,GNTD)
Safe HaskellNone
LanguageHaskell2010

Music.Score.Meta.Fermata

Contents

Description

Provides fermatas.

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, HasPosition a) => Fermata -> a -> a Source

Add a fermata over the whole score.

fermataDuring :: HasMeta a => Span -> Fermata -> a -> a Source

Add a fermata to the given score.

Extracting fermatas

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

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