如何在乳胶中写入 ^(插入符号)?

如何在乳胶中写入 ^(插入符号)?

正如标题所述。我怎样才能在 Latex 中写出 ^(caret)。

如果我输入类似 的内容[^set],则 set 中的 s 会被提升为幂。我该如何按原样显示 [^set]?

$\wedge$有点可行,但它给出的是 ∧ 而不是 ^。

答案1

使用\string^使得参数类别代码为 12(其他)。

\documentclass{article}

\begin{document}

text mode: [\string^set]

math mode: $[\string^set]$

\end{document}

在此处输入图片描述

如果你经常使用插入符号,你可以为其定义一个简写宏

\newcommand{\caret}{\string^}

阅读更多\string内容回答经过埃格尔

答案2

简单来说:

\documentclass{article}
\usepackage{amsmath}
\begin{document}

this is a caret \^{}which is over a space. % space after \^ is not mandatory


$\hat{ }x+1$

\end{document}

插入符号

相关内容