How to Write the Pound Symbol (£) in LaTeX

In LaTeX, you can write the pound symbol (£) using the \pounds command or the \textsterling command.

The following examples show how to write the pound symbol in LaTeX.

How to Write the Pound Symbol in Text

We can use the \pounds or \textsterling commands to write the pound symbol in LaTeX document for text.

Suppose we want to write the pound symbol in the text.

We can use the following LaTeX code to do so:

\documentclass{article}
\begin{document}

This is an example of using the pound symbol with the \pounds command: \pounds.

This is another example using the \textsterling command: \textsterling.

\end{document}

Output: 👇️

This is an example of using the pound symbol with the \pounds command: £.

This is another example using the \textsterling command: £.

In this example, both the \pounds and \textsterling commands to display the pound symbol in the text.

How to Write the Pound Symbol in Mathematical Expressions

For mathematical expressions, We can use the \pounds or \textsterling commands to ensure proper formatting.

Suppose we would like to write mathematical expressions that contain the pound symbol.

We can use the following LaTeX code to do so:

\documentclass{article}
\begin{document}

An inline mathematical expression: \( 100 \pounds \).

A displayed mathematical expression:
\[
100 \pounds
\]

\end{document}

Output: 👇️

Pound Symbol

In this example, both the \pounds and \textsterling commands to denote the pound symbol in both inline and displayed mathematical expressions.

Conclusion

We can use the \pounds or \textsterling commands for both text and mathematical expressions. This ensures that the pound symbol is properly formatted and displayed in LaTeX document.