我如何使用 ⨝ 和⊐ 在我的 LaTeX 文档中?
我正在尝试插入 LaTeX 数学符号< 中的一些符号/a> 进入我的 LaTeX 文档:在关系符号标题下,我想要连接 (⨝) 和平方替换 (⊐)。
它们后面都有一个小 b 符号。 这意味着什么; 如何将它们插入到我的文档中? 我尝试添加它们而忽略 b 但它似乎出错并且不起作用。
我正在使用 LaTeX 的小型 Mac 安装版。
I'm trying to insert some symbols from LaTeX Math Symbols into my LaTeX document: under the relational symbols heading, I want join (⨝) and square supset (⊐).
They both have a little b symbol after them. What does that mean; how do I insert them into my doc? I tried adding them ignoring the b but it seemed to error and not work.
I'm using the small Mac install of LaTeX.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我的 Helmut 和 Kopka 的 A Guide to LaTeX 中提到
\sqsupset
(以及其他):“注意:带下划线的符号名称 [...] 仅在LaTeX 2e(如果已加载
latexsym
或amsfonts
包之一。”这本书根本没有在其符号表中显示
\Join
,但是它列出了\bowtie
,它似乎产生相同的符号,并且没有相关的脚注或警告完全有它:-)My copy of A Guide to LaTeX by Helmut and Kopka says of
\sqsupset
(amongst others):"Note: the underlined symbol names [...] are only available in LaTeX 2e if one of the packages
latexsym
oramsfonts
has been loaded."The book doesn't show
\Join
in its symbol tables at all, however it lists\bowtie
which appears to produce the same symbol, and which has no footnotes or warnings associated with it at all :-)他们对你使用元 LaTeX:这是一个上标“b”($ 表示一个简短的数学表达式,插入符号是上标)。
他们表示有一个脚注。 它显示在“二元运算符号”部分中。
因此,如果您看到错误,则表明您正在使用基本字体格式。 尝试脚注中列出的样式选项之一,看看您是否更幸运。 如下所述,
值得一试。 这应该启用
\Join
等符号。They're using meta-LaTeX on you: that is a superscript "b" ($ indicates a short math expression and the caret is the superscript).
What they're indicating is that there is a footnote. It is shown in the "Binary Operation Symbols" section.
So, if you are seeing an error, that would indicate to me that you are using a basefont format. Try one of the style options listed in the footnote and see if you have more luck. As explained below,
is worth a try. That should enable symbols such as
\Join
.正如该页面上的脚注所解释的,您应该使用特殊设置来获取这些符号。 例如,如果您将
\usepackage{newlfont}
添加到文件顶部,您将能够获取符号,例如$\sqsubset$
。As the footnote on that page explaines, you should use special settings to get these symbols. So for instance, if you add
\usepackage{newlfont}
to the top of your file, you'll be able to get the symbols, e.g.$\sqsubset$
.