Labels

Labels are added to elements using the schemdraw.elements.Element.label() method. Some unicode utf-8 characters are allowed, such as '1μF' and '1MΩ' if the character is included in your font set. Alternatively, full LaTeX math expressions can be rendered when enclosed in $..$ For a description of supported math expressions, in the Matplotlib backend see Matplotlib Mathtext, and the SVG backend refer to the Ziamath package. Subscripts and superscripts are also added using LaTeX math mode, enclosed in $..$:

with schemdraw.Drawing():
    elm.Resistor().label('1MΩ')
    elm.Capacitor().label('1μF')
    elm.Capacitor().label(r'$v = \frac{1}{C} \int i dt$')
    elm.Resistor().at((0, -2)).label('$R_0$')
    elm.Capacitor().label('$x^2$')
../_images/labels_1_0.svg

Location

The label location is specified with the loc parameter to the label method. It can be left, right, top, bottom, or the name of a defined anchor within the element. These directions do not depend on rotation. A label with loc=’left’ is always on the leftmost terminal of the element.

with schemdraw.Drawing():
    (elm.Resistor()
        .label('Label')  # 'top' is default
        .label('Bottom', loc='bottom')
        .label('Right', loc='right')
        .label('Left', loc='left'))
../_images/labels_2_0.svg

Labels may also be placed near an element anchor by giving the anchor name as the loc parameter.

with schemdraw.Drawing():
    (elm.BjtNpn()
        .label('b', loc='base')
        .label('c', loc='collector')
        .label('e', loc='emitter'))
../_images/labels_3_0.svg

The schemdraw.elements.Element.label() method also takes parameters that control the label’s rotation, offset, font, alignment, and color. Label text stays horizontal by default, but may be rotated to the same angle as the element using rotate=True, or any angle X in degrees with rotate=X. Offsets apply vertically if a float value is given, or in both x and y if a tuple is given.

with schemdraw.Drawing():
    elm.Resistor().label('no offset')
    elm.Resistor().label('offset', ofst=1)
    elm.Resistor().label('offset (x, y)', ofst=(-.6, .2))
    elm.Resistor().theta(-45).label('no rotate')
    elm.Resistor().theta(-45).label('rotate', rotate=True)
    elm.Resistor().theta(45).label('90°', rotate=90)
../_images/labels_4_0.svg

Labels may also be added anywhere using the schemdraw.elements.lines.Label element. The element itself draws nothing, but labels can be added to it:

elm.Label().label('Hello')

Voltage Labels

A label may also be a list/tuple of strings, which will be evenly-spaced along the length of the element. This allows for labeling positive and negative along with a component name, for example:

elm.Resistor().label(('–','$V_1$','+'))  # Note: using endash U+2013 character
../_images/labels_5_0.svg

Use the Gap element to label voltage across a terminal:

with schemdraw.Drawing():
    elm.Line().dot(open=True)
    elm.Gap().label(('–','$V_o$','+'))
    elm.Line().idot(open=True)
../_images/labels_6_0.svg

Current Arrow Labels

Current Arrow

To label the current through an element, the schemdraw.elements.lines.CurrentLabel element can be added. The at method of this element can take an Element instance to label, and the arrow will be placed over the center of that Element.

with schemdraw.Drawing():
    R1 = elm.Resistor()
    elm.CurrentLabel().at(R1).label('10 mA')
../_images/labels_7_0.svg

For transistors, the label will follow sensible bias currents by default.

with schemdraw.Drawing():
    Q1 = elm.AnalogNFet()
    elm.CurrentLabel().at(Q1).label('10 µA')

    Q2 = elm.AnalogNFet().at([4,0]).flip().reverse()
    elm.CurrentLabel().at(Q2).label('10 µA')
../_images/labels_8_0.svg

Inline Current Arrow

Alternatively, current labels can be drawn inline as arrowheads on the leads of 2-terminal elements using schemdraw.elements.lines.CurrentLabelInline. Parameters direction and start control whether the arrow is shown pointing into or out of the element, and which end to place the arrowhead on.

with schemdraw.Drawing():
    R1 = elm.Resistor()
    elm.CurrentLabelInline(direction='in').at(R1).label('10 mA')
../_images/labels_9_0.svg

Loop Current

Loop currents can be added using schemdraw.elements.lines.LoopCurrent, given a list of 4 existing elements surrounding the loop.

with schemdraw.Drawing():
    R1 = elm.Resistor()
    C1 = elm.Capacitor().down()
    D1 = elm.Diode().fill(True).left()
    L1 = elm.Inductor().up()
    elm.LoopCurrent([R1, C1, D1, L1], direction='cw').label('$I_1$')
../_images/labels_10_0.svg

Alternatively, loop current arrows can be added anywhere with any size using schemdraw.elements.lines.LoopArrow.

with schemdraw.Drawing():
    a = elm.Line().dot()
    elm.LoopArrow(width=.75, height=.75).at(a.end)
../_images/labels_11_0.svg

Impedance Arrow Label

A right-angle arrow label, often used to indicate impedance looking into a node, is added using schemdraw.elements.lines.ZLabel.

with schemdraw.Drawing():
    R = elm.RBox().right()
    elm.ZLabel().at(R).label('$Z_{in}$')
../_images/labels_12_0.svg

Annotations

To make text and arrow annotations to a schematic, the schemdraw.elements.lines.Annotate element draws a curvy arrow with label placed at it’s end. It is based on the schemdraw.elements.lines.Arc3 element.

The schemdraw.elements.lines.Encircle and schemdraw.elements.lines.EncircleBox elements draw an ellipse, or rounded rectangle, surrounding a list of elements.

parallel = elm.Encircle([R1, R2], padx=.8).linestyle('--').linewidth(1).color('red')
series = elm.Encircle([R3, R4], padx=.8).linestyle('--').linewidth(1).color('blue')

elm.Annotate().at(parallel.NNE).delta(dx=1, dy=1).label('Parallel').color('red')
elm.Annotate(th1=0).at(series.ENE).delta(dx=1.5, dy=1).label('Series').color('blue')
../_images/labels_14_0.svg