Latex 中的匕首上标

Latex 中的匕首上标

我想在单词前添加一个匕首符号 (\textdagger) 作为上标(不是数学)。我该怎么做?

答案1

您可以使用\textsuperscript

\documentclass{article}
\begin{document}
Hello\textsuperscript{\textdagger} world.
\end{document}

在此处输入图片描述

或者(非常感谢芭芭拉·比顿!)

\documentclass{article}
\begin{document}
Hello {}\textsuperscript{\textdagger}world.
\end{document}

在此处输入图片描述

相关内容