f¶
-
abjad.top.f.
f
(argument, strict=None)¶ Formats
argument
and prints result.>>> staff = abjad.Staff("c'4 d' e' f'") >>> markup = abjad.Markup('Allegro', direction=abjad.Up) >>> markup = markup.with_color('blue') >>> abjad.attach(markup, staff[0]) >>> for leaf in staff: ... abjad.attach(abjad.Articulation('.'), leaf) ... >>> abjad.f(staff) \new Staff { c'4 -\staccato ^ \markup { \with-color #blue Allegro } d'4 -\staccato e'4 -\staccato f'4 -\staccato }
>>> abjad.show(staff)