上標e的thorn怎麼寫?

上標e的thorn怎麼寫?

理想情況下不使用任何外部套件。我正在尋找這樣的東西。

中古英語 þ 帶上標 e 早期現代 y 上標 e

有關這封信的更多信息,請閱讀維基百科

答案1

您可以lmodern與舊的英文字體結合cmoefont

在此輸入影像描述

第 1 步:請按照中的說明進行操作這個問題的答案取得cmoefont所有檔案並將其放置在與您的檔案相同的目錄中tex

第二步:載入字體檔案並使用。例如,上面的圖像是由

\documentclass{article}
\usepackage{lmodern}
\DeclareFontFamily{OT1}{cmoer10}{}
\DeclareFontShape{OT1}{cmoer10}{m}{n}{<-> cmoer10}{}
\newcommand{\THE}{{\usefont{OT1}{cmoer10}{m}{n} u}\textsuperscript{e}}

\begin{document}
The \THE\ the olde 
\end{document}

稍微複雜一點的版本,使用stackengine,可以使e上標更高,類似於您的範例。

在此輸入影像描述

\documentclass{article}
\usepackage{lmodern}
\usepackage{stackengine}
\DeclareFontFamily{OT1}{cmoer10}{}
\DeclareFontShape{OT1}{cmoer10}{m}{n}{<-> cmoer10}{}
\newcommand{\THE}{{\usefont{OT1}{cmoer10}{m}{n} u}\textsuperscript{e}}
\newcommand{\oTHE}{\stackengine{-0.3ex}{\usefont{OT1}{cmoer10}{m}{n} u}{~e}{O}{c}{F}{F}{S}}

\begin{document}
The \THE\ the olde  \oTHE 
\end{document}

答案2

這本質上與 @Willie Wong 的答案相同,但QTCloisteredMonk中的字體和間距不同stackengine。使用 LuaLaTeX 編譯。

在此輸入影像描述

\documentclass{article}
\usepackage{stackengine}
\DeclareFontFamily{OT1}{QTCloisteredMonk}{}
\DeclareFontShape{OT1}{QTCloisteredMonk}{m}{n}{<-> QTCloisteredMonk}{}
\newcommand{\THE}{\stackon[0pt]{\usefont{OT1}{QTCloisteredMonk}{m}{n} y}{\usefont{OT1}{QTCloisteredMonk}{m}{n}\kern.06em\tiny e}}

\begin{document}
Early the: \THE
\end{document}

相關內容