Fonts & Character Sets ⇒ Registered trademark sign in superscript
Registered trademark sign in superscript
I'm trying to get the registered trademark sign in superscript by using $^\textregistered$. However \textregistered is not recognised in maths mode, how can I solve this problem? If you just type ProductName\textregistered, the sign is massive and it's as big as the font itself. I want it to be small and as a superscript.
Thanks in advance for any help.
John
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Registered trademark sign in superscript
use \textsuperscript{\textregistered}.
Re: Registered trademark sign in superscript
Re: Registered trademark sign in superscript
I have a similar sort of problem nad that is how to write the same thing as "Section" or "subsection" format.
eg I have a heading "Fluent Subroutines" and I want to write fluent with registered mark. For your help and guidance pls.
Registered trademark sign in superscript
we will need additional relevant information. The following code:sallo wrote:...
I have a similar sort of problem nad that is how to write the same thing as "Section" or "subsection" format.
eg I have a heading "Fluent Subroutines" and I want to write fluent with registered mark...
Code: Select all
\documentclass{article}
\begin{document}
\tableofcontents
\section{Fluent\textsuperscript{\textregistered} Subroutines}
\subsection{Fluent\textsuperscript{\textregistered} Subroutines}
\end{document}
Registered trademark sign in superscript
$^{\textregistered}$
Just saw you forgot the brackets, which will not work
Registered trademark sign in superscript
Registered trademark sign in superscript
You can achieve a superscript registered trademark sign by using the following code: ProductName$^{\textregistered}$. This will make the registered trademark symbol appear in superscript.
Hope this helps!