如何在 LaTeX 的数学模式下显示插入符号 (^)?

发布于 2024-07-10 16:27:06 字数 1752 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

还如梦归 2024-07-17 16:27:06

您可能想要使用通用符号来表示独占或 \oplus(但要为其指定一个适当的名称,例如 \newcommand\XOR{\oplus})。

插入符号作为二元运算符有点太小而不易察觉。 但是,如果您坚持使用脱字符号,请使用:

\newcommand\XOR{\mathbin{\char`\^}}
$x \XOR y$

\mathbin 在二元运算符的符号周围放置正确的间距,而 \char 确保字形是从罗马字体获得的。

You might want to use the common symbol for exclusive or instead, \oplus (but give it a proper name with something like \newcommand\XOR{\oplus}).

The caret is a bit too small to be noticeable as a binary operator. However, if you do insist using a caret instead, use this:

\newcommand\XOR{\mathbin{\char`\^}}
$x \XOR y$

The \mathbin puts the right spacing around the symbol for a binary operator, and the \char ensures that the glyph is obtained from the roman font.

与之呼应 2024-07-17 16:27:06

怎么样

\^{}

或者

\verb|^|

How about

\^{}

or

\verb|^|

?

厌倦 2024-07-17 16:27:06

使用楔形符号作为上标。 它有完美的尺寸。

像这样的东西:

$ ^\wedge $

Use the wedge symbol as a superscript. It has the perfect size.

Something like this:

$ ^\wedge $
仙女山的月亮 2024-07-17 16:27:06

在文本模式下使用 \textasciicircum。 如果您处于数学模式,则需要使用类似 $\mbox{\textasciicircum}$ 的内容。

Use \textasciicircum in text mode. If you are in math mode, you need to use something like $\mbox{\textasciicircum}$.

蓝色星空 2024-07-17 16:27:06

这就是我所做的:

$2\hat{\text{ }}3$

This is what I did:

$2\hat{\text{ }}3$
べ映画 2024-07-17 16:27:06

在数学模式下,您可以使用:

$7 \^{ } 3 = 4$

来执行此操作,如在线 LaTeX 渲染器此处。

在此处输入图像描述

Within math mode, you can use:

$7 \^{ } 3 = 4$

to do this, as shown from the online LaTeX renderer here.

enter image description here

笑梦风尘 2024-07-17 16:27:06

\^ 是适用于其他字符的重音字符,\^{4} 给出头部带有克拉的 4。 它不占用水平空间。 如果您写下 $7 \^{} 3 = 4$,您会得到一个 73,其中 7上都有一个标记3.。 然后你需要的就是稍微填充一下这个空间。 通过反复试验和一个名为 LatexIt 的优秀应用程序,我发现这个序列工作得非常好:

\hspace{1.5} \^{} \hspace{1.5}  

这给出了 3 个单位的宽度,其中克拉居中。 看起来很好。

不过,它是尖尖的克拉,而 \verb|^| 提供了一种更扁平的克拉,看起来更像是编程语言中经常使用的单型字体。

\^ is an accent character that applies to other characters, \^{4} gives a 4 with a carat on its head. It takes up no horizontal space. If you write $7 \^{} 3 = 4$ you get a 73 with a mark smashed onto both the 7 and the 3. What you need then is to fill out the space a little bit. Through trial and error and a nice application called LatexIt, I found this sequence to work beautifully:

\hspace{1.5} \^{} \hspace{1.5}  

This gives a 3 unit width with the carat centered in it. It looks nice.

It is a pointy carat though, and \verb|^| gives a more flattened one that looks more like a monotype font frequently used in programming languages.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文