[Tex/LaTex] Inverted circumflex not as diacritic

accentsmath-modesuperscriptssymbols

How do I typeset a caron or inverted circumflex as a character on its own in math-mode, rather than as a diacritic above another character? I need to do this because I want to use it as a superscript, like . This is when describing a pair of functions: f^ and .

Best Answer

Something like this?

enter image description here

\documentclass{article}
\usepackage{amsmath} % for \text macro
\begin{document}
$f\text{\v{}}$ $f\text{\^{}}$ $f\text{\u{}}$ $f\text{\={}}$  $f\text{\.{}}$ $f\text{\"{}}$
\end{document}
Related Question