Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

How does one print the '£' symbol?

share|improve this question
Welcome to TeX.sx! Your question was migrated here from Stack Overflow. Please register on this site, too, and make sure that both accounts are associated with each other, otherwise you won't be able to comment on or accept answers or edit your question. – Werner Nov 4 '11 at 18:24

migrated from stackoverflow.com Sep 15 '11 at 14:29

4 Answers

\pounds is what you need.

share|improve this answer
Thank you . It works with \pounds. – Abhishek Sep 15 '11 at 13:25
Although, it doesn't work everywhere. For example MathOverflow is processed with MathJax and that doesn't seem to recognise either \pounds or \textsterling. – isomorphismes Feb 12 at 17:41

I guess this should be \pounds, according to http://selinap.com/2008/07/latex-special-characters/

share|improve this answer

There are very effective resources for finding symbols (not only math symbols), as suggested here: How to look up a math symbol?

share|improve this answer

If you use inputenc then you can just write £:

\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{document}
£ etc
\end{document}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.