Skip to content

Instantly share code, notes, and snippets.

@thiagopbueno
Last active July 11, 2019 14:45
Show Gist options
  • Save thiagopbueno/7da31e39712cdcc1212a822c413ef4ff to your computer and use it in GitHub Desktop.
Save thiagopbueno/7da31e39712cdcc1212a822c413ef4ff to your computer and use it in GitHub Desktop.
Matplotlib for LaTex pdf
import matplotlib
# http://phyletica.org/matplotlib-fonts/
matplotlib.rcParams['pdf.fonttype'] = 42
matplotlib.rcParams['ps.fonttype'] = 42
matplotlib.rcParams['text.usetex'] = True
# https://nerdjusttyped.blogspot.com/2010/07/type-1-fonts-and-matplotlib-figures.html
matplotlib.rcParams['ps.useafm'] = True
matplotlib.rcParams['pdf.use14corefonts'] = True
matplotlib.rcParams['text.usetex'] = True
@thiagopbueno
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment