marktools.get_articulation_attached_to_component

abjad.tools.marktools.get_articulation_attached_to_component.get_articulation_attached_to_component(component)[source]

New in version 2.0.

Get exactly one articulation attached to component:

abjad> staff = Staff("c'8 d'8 e'8 f'8")
abjad> marktools.Articulation('staccato')(staff[0])
Articulation('staccato')(c'8)
abjad> f(staff)
\new Staff {
    c'8 -\staccato
    d'8
    e'8
    f'8
}
abjad> marktools.get_articulation_attached_to_component(staff[0])
Articulation('staccato')(c'8)

Return one articulation.

Raise missing mark error when no articulation is attached.

Raise extra mark error when more than one articulation is attached.

This Page