How to Write the Registered Trademark Symbol (®) in LaTeX

In LaTeX, you can write the registered trademark symbol (®) using the \textregistered command. This command is part of the textcomp package, so you need to include this package in LaTeX document.

The following example shows how to write the registered trademark symbol in LaTeX.

How to Write the Registered Trademark Symbol in Text

We can use the \textregistered command to write the registered trademark symbol in LaTeX document for text.

Suppose we want to write the registered trademark symbol in the text.

We can use the following LaTeX code to do so:

\documentclass{article}
\usepackage{textcomp}
\begin{document}

This is an example of using the registered trademark symbol: \textregistered.

\end{document}

Output: 👇️

Registered Trademark Symbol

In this example, we use the \textregistered command to display the registered trademark symbol in the text.

Conclusion

We can use the \textregistered command from the textcomp package for both text mode. This ensures that the registered trademark symbol is properly formatted and displayed in LaTeX document.