New in version 2.0.
Label interval-class vector of every vertical moment in expr:
abjad> from abjad.tools import verticalitytools
abjad> score = Score(Staff([]) * 3)
abjad> notes = [Note("c'8"), Note("d'8"), Note("e'8"), Note("f'8")]
abjad> score[0].extend(notes)
abjad> contexttools.ClefMark('alto')(score[1])
ClefMark('alto')(Staff{})
abjad> score[1].extend([Note(-5, (1, 4)), Note(-7, (1, 4))])
abjad> contexttools.ClefMark('bass')(score[2])
ClefMark('bass')(Staff{})
abjad> score[2].append(Note(-24, (1, 2)))
abjad> verticalitytools.label_vertical_moments_in_expr_with_interval_class_vectors(score)
abjad> f(score)
\new Score <<
\new Staff {
c'8
d'8 _ \markup { \tiny { 0010020 } }
e'8
f'8 _ \markup { \tiny { 1000020 } }
}
\new Staff {
\clef "alto"
g4
f4 _ \markup { \tiny { 0100110 } }
}
\new Staff {
\clef "bass"
c,2 _ \markup { \tiny { 1000020 } }
}
>>
Changed in version 2.0: renamed label.vertical_moment_interval_class_vectors() to verticalitytools.label_vertical_moments_in_expr_with_interval_class_vectors().