Bases: abjad.measure.dynamic.measure.DynamicMeasure
Dynamic measure with no time signature.
abjad> measure = AnonymousMeasure(construct.scale(4))
abjad> print measure.format
\override Staff.TimeSignature #'stencil = ##f
\time 1/2
c'8
d'8
e'8
f'8
\revert Staff.TimeSignature #'stencil
abjad> measure.extend(construct.scale(2))
abjad> print measure.format
\override Staff.TimeSignature #'stencil = ##f
\time 3/4
c'8
d'8
e'8
f'8
c'8
d'8
\revert Staff.TimeSignature #'stencil
New in version 1.1.1.
Extend components rightwards of self in parent.
Do not extend edge spanners.
abjad> t = Voice(construct.scale(3))
abjad> Beam(t[:])
abjad> t[-1].extend_in_parent(construct.scale(3))
abjad> print t.format
\new Voice {
c'8 [
d'8
e'8 ]
c'8
d'8
e'8
}
New in version 1.1.1.
Extend components leftwards of self in parent.
Do not extend edge spanners.
abjad> t = Voice(construct.scale(3))
abjad> Beam(t[:])
abjad> t[0].extend_in_parent(construct.scale(3))
abjad> print t.format
\new Voice {
c'8
d'8
e'8
c'8 [
d'8
e'8 ]
}
Read-only tuple of all leaves in self.
Changed in version 1.1.1.