How to Write the Trademark Symbol (™) in LaTeX

In LaTeX, you can write the trademark symbol (™) using the \texttrademark 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 trademark symbol in LaTeX.

How to Write the Trademark Symbol in Text

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

Suppose we want to write the 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 trademark symbol: \texttrademark.

\end{document}

Output: 👇️

Trademark Symbol

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

Conclusion

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