[Tex/LaTex] Move textregistered symbol more towards the top right

text manipulation

I have this as my code:

\Huge\bfseries Cambridge IGCSE\textsuperscript{\small{\textregistered}}

And this shows:

textregistered logo

To make it more aesthetically pleasing, how do I move the text registered symbol a bit more to the top so that it is aligned with the top vertical line of the E?

\documentclass[12pt]{book} 
\begin{document} 
\Huge\bfseries Cambridge IGCSE\textsuperscript{\small{\textregistered}} 
\end{document}

Thank you!

Best Answer

Is this aesthetically pleasing?

\documentclass[12pt]{book}

\begin{document}
\Huge\bfseries Cambridge IGCSE\raisebox{1ex}{\small{\textregistered}}  %%< adjust 1ex as you like
\end{document}

enter image description here

I have used \raisebox instead of \textsuperscipt so that you can adjust the raise.

Related Question