使用 Unicode 数学符号时出现错误“未知的 Unicode 字符”

使用 Unicode 数学符号时出现错误“未知的 Unicode 字符”

当我使用 pdflatex 转换包含 unicode 数学符号的文件时,它会抱怨找不到该符号。我该如何处理?它似乎为我提供了一种将字符插入系统文件的方法……我不确定这是否是正确的做法。

! Package ucs Error: Unknown Unicode character 8289 = U+2061,
(ucs)                possibly declared in uni-32.def.

l.1802 \[

答案1

\usepackage[utf8x]{inputenc}很可能正在使用,并且可以根据错误消息通过以下方式修复该问题:

\documentclass{article}

\usepackage[utf8x]{inputenc}
\DeclareUnicodeCharacter{"2061}{}% use TeX input syntax for numbers, here hexadecimal (works only with utf8x)
\begin{document}
\[

相关内容