Skip to content

Instantly share code, notes, and snippets.

@tclv
Last active August 29, 2015 14:18
Show Gist options
  • Save tclv/7851203e43fc4c6d2e2b to your computer and use it in GitHub Desktop.
Save tclv/7851203e43fc4c6d2e2b to your computer and use it in GitHub Desktop.
Xelatex font snippet
\usepackage{ifxetex}
\ifxetex
\usepackage{fontspec}
\defaultfontfeatures{Ligatures=TeX} % To support LaTeX quoting style
\setromanfont{Palatino Linotype} %mijn fonts
\setmonofont{Source Code Pro for Powerline} %mijn vim font
\else
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment