我在 Latex 中编写文本,但收到错误消息“Unicode 字符”。如何纠正?
K(a+b,c-2) +L(a-b,c+1)
其次,我想使用箭头,因此使用命令 $\Rightarrow$。但不是箭头,而是相同的文本 $\Rightarrow$。(我已包含 \usepackage{mathabx}
答案1
这可能与从 PDF 或网页复制文本(公式)有关。尝试删除减号,然后写下来(不要复制粘贴)。
对于箭头:你包括了吗\usepackage{amsmath}
?
(但这实际上是两个问题……)
答案2
您发布的代码不会产生错误。您仅提供了错误片段作为注释。
\documentclass{article}
\begin{document}
$k(a − 1, b − 2),k1(b − 6, c − 1)$
\end{document}
生成错误(您尚未显示)
! LaTeX Error: Unicode character − (U+2212)
not set up for use with LaTeX.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.5 $k(a −
1, b − 2),k1(b − 6, c − 1)$
?
请注意,错误消息会告诉您哪个字符导致了问题,它显示问题行是输入文件的第 5 行,并且 teX 已经读取到−
。
替换−
为-
\documentclass{article}
\begin{document}
$k(a - 1, b - 2),k1(b - 6, c - 1)$
\end{document}
运行无错误: