12

How do you get a non-italic pound sign? (£)

Daniel
  • 121

2 Answers2

17

In the original cm fonts (OT1 encoding) £ was encoded as italic $ but in the 8bit encoding (T1) it is not an issue:

enter image description here

\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}

\pounds\ and \textit{\pounds}

\end{document}
David Carlisle
  • 757,742
1

Use \pounds (natively supported in LaTeX) or \faGbp from fontawesome:

enter image description here

\documentclass{article}

\usepackage{fontawesome}

\begin{document}

\pounds\ \verb|\pounds|

\faGbp\ \verb|\faGbp|

\end{document}
Werner
  • 603,163