[Tex/LaTex] How to get a non-italic pound sign? (£)

italic

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

Best Answer

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}