9

I would like to attach a dagger symbol (\textdagger) as a superscript in front of a word (not in math). How can I do it?

Pekka
  • 113

1 Answers1

12

You can use \textsuperscript.

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

enter image description here

Or (big thanks to barbara beeton!)

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

enter image description here