我需要输入一个特殊字符:a你带有一个小埃作为重音。在 Windows 中,我将其视为uͤ但是我无法在unicode或symbols-a4.pdf文件中找到它。有人能告诉我如何输入这个特殊字符吗?
答案1
答案2
答案3
使用 pdflatex 您可以使用类似下面的内容:
\RequirePackage{fix-cm}
\documentclass{article}
\usepackage{xfp}
\makeatletter
\newcommand{\e}{} % initialize
\DeclareRobustCommand{\e}[1]{%
\leavevmode
\check@mathfonts
\vbox{\ialign{%
\hfil##\hfil\cr
\kern5\fontdimen1\font
\fontsize{\fpeval{\ssf@size/1.5}}{0}\selectfont e\cr
\noalign{\nointerlineskip\vspace{\fpeval{\ssf@size/8}pt}}
#1\cr
}}%
}
\makeatother
\begin{document}
X\e{a}\e{o}\e{u}Y
\textit{X\e{a}\e{o}\e{u}Y}
\textbf{X\e{a}\e{o}\e{u}Y}
\textit{\textbf{X\e{a}\e{o}\e{u}Y}}
\medskip
{\Large X\e{a}\e{o}\e{u}Y}
\end{document}