將文字註冊符號移至右上角

將文字註冊符號移至右上角

我有這個作為我的代碼:

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

這顯示:

文字註冊標誌

為了使其更美觀,如何將文字註冊符號移到頂部一點,使其與 E 的頂部垂直線對齊?

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

謝謝你!

答案1

這在審美上令人愉悅嗎?

\documentclass[12pt]{book}

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

在此輸入影像描述

我已經使用\raisebox而不是\textsuperscipt這樣你可以調整加薪。

答案2

這是適用於所有字體大小的版本:

\documentclass{article}
\usepackage{fix-cm}
%\usepackage{textcomp}
\makeatletter
\DeclareRobustCommand{\regmark}{\raisebox{1.13ex}{%
  \fontsize{.4\dimexpr\f@size pt}\z@\selectfont\textregistered}%
}
\makeatother
\begin{document}
\Huge E\regmark

\large E\regmark

\normalsize E\regmark
\end{document}

在此輸入影像描述

textcomp這是載入後的輸出(%在範例中刪除):

在此輸入影像描述

相關內容