如何^
在数学模式下打印字符?
\documentclass[a4paper,10pt]{article}
\begin{document}
The character $\text{\^}$ was printed in math-mode.
\end{document}
答案1
您有几种可能:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\newcommand{\upA}{\string^}
\newcommand{\upB}{{^{\scriptscriptstyle\,\wedge}}}
\newcommand{\upC}{\textnormal{\textasciicircum}}
\begin{document}
$a\upA a\upB a\upC a$
\end{document}
请注意,仅最后一个需要 T1 编码(使用正常的 OT1 编码,\upC
将与 相同\upA
)。
如果您的目的是使用该符号来表示指数,请不要这样做。
答案2
经过一些额外的调整后,\^{}
效果很好。实际的符号非常小,但没关系。