Skip

class abjad.Skip(*args)

Bases: abjad.leaf.leaf._Leaf

accidental
Read-only reference to AccidentalInterface.
articulations
Read-only reference to ArticulationsInterface.
barline
Read-only reference to BarLineInterface.
barnumber
Read-only reference to BarNumberInterface.
beam
Read-only reference to BeamInterface.
breaks
Read-only reference to BreaksInterface.
clef
Read-only reference to ClefInterface.
comments
Read-only reference to CommentsInterface.
directives
Read-only reference to DirectivesInterface.
dots
Read-only reference to DotsInterface.
duration
Read-only reference to class-specific duration interface.
dynamics
Read-only reference to DynamicsInterface.
extend_in_parent(components)

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
}
extend_left_in_parent(components)

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 ]
}
format
Read-only version of self as LilyPond input code.
glissando
Read-only reference to GlissandoInterface.
grace
Read-only reference to GraceInterface.
harmonic
Read-only reference to HarmonicInterface.
history
Read-only reference to HistoryInterface.
instrument
Read-only reference to InstrumentInterface.
interfaces
Read-only reference to InterfaceAggregator.
leaves

Read-only tuple of all leaves in self.

Changed in version 1.1.1.

markup
Read-only reference to MarkupInterface.
meter
Read-only reference to MeterInterface.
music
Read-only tuple of music in self.
name
Read-write name of self. Must be string or None.
next
Read-only reference to next bead in thread.
notecolumn
Read-only reference to NoteColumnInterface.
notehead
Read-only reference to NoteHeadInterface.
number
Read-only number of self in thread.
offset
Read-only reference to OffsetInterface.
pairs
parentage
Read-only reference to ParentageInterface.
pianopedal
Read-only reference to PianoPedalInterface.
pitches
prev
Read-only reference to previous bead in thread.
rest
Read-only reference to RestInterface.
score
Read-only reference to ScoreInterface.
signature
Read-only signature of self.
slur
Read-only reference to SlurInterface.
spacing
Read-only reference to SpacingInterface.
spanbar
Read-only reference to SpanBarInterface.
spanners
Read-only reference to _ComponentSpannerAggregator.
splice(components)
Splice components after self. Extend spanners rightwards to attach to all components in list.
splice_left(components)
Splice components before self. Extend spanners leftwards to attach to all components in list.
staff
Read-only reference to StaffInterface.
stem
Read-only reference to StemInterface.
tempo
Read-only reference to TempoInterface.
text
Read-only reference to TextInterface.
thread
Read-only reference to ThreadInterface.
tie
Read-only reference to TieInterface.
tremolo
Read-only reference to TremoloInterface.
trill
Read-only reference to TrillInterface.
tupletbracket
Read-only reference to TupletBracketInterface.
tupletnumber
Read-only reference to TupletNumberInterface.
voice
Read-only reference to VoiceInterface.

Previous topic

Score

Next topic

SpacingIndication

This Page