Skip to content

Instantly share code, notes, and snippets.

@godbyk
Created August 28, 2011 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save godbyk/1176128 to your computer and use it in GitHub Desktop.
Save godbyk/1176128 to your computer and use it in GitHub Desktop.
Euro symbol for LaTeX
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{eurosym}
% Let's us use € to get the \euro command from the eurosym package.
\DeclareUnicodeCharacter{20AC}{\euro}
\begin{document}
The euro from eurosym package: \euro.
The euro from our new command: €.
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment