You are reading an old version of the documentation (v3.0.0). For the latest version see https://matplotlib.org/stable/gallery/text_labels_and_annotations/text_fontdict.html
Version 3.0.0
matplotlib
Fork me on GitHub

Related Topics

Controlling style of text and labels using a dictionaryΒΆ

This example shows how to share parameters across many text objects and labels by creating a dictionary of options passed across several functions.

../../_images/sphx_glr_text_fontdict_001.png
import numpy as np
import matplotlib.pyplot as plt


font = {'family': 'serif',
        'color':  'darkred',
        'weight': 'normal',
        'size': 16,
        }

x = np.linspace(0.0, 5.0, 100)
y = np.cos(2*np.pi*x) * np.exp(-x)

plt.plot(x, y, 'k')
plt.title('Damped exponential decay', fontdict=font)
plt.text(2, 0.65, r'$\cos(2 \pi t) \exp(-t)$', fontdict=font)
plt.xlabel('time (s)', fontdict=font)
plt.ylabel('voltage (mV)', fontdict=font)

# Tweak spacing to prevent clipping of ylabel
plt.subplots_adjust(left=0.15)
plt.show()

Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery