0

How to solve this package issue. My code for annual report is too long. I cannot post here.

David Carlisle
  • 757,742

1 Answers1

1

One of your expressions uses (U+1D434), the Unicode mathematical alphanumeric symbol italic A, instead of A. This is probably because you copied from a PDF made with unicode-math or mmap or a webpage that uses MathML and pasted into your source file.

The simplest answer is to compile with LuaLaTeX or XeLaTeX and load \usepackage{unicode-math}.

Otherwise, you can try to load newunicodechar and add the rule

\newunicodechar{}{\mathnormal{A}}

This might or might not work in all engines, due to being outside Unicode’s Basic Multilingual Plane. (Thanks to David Carlisle for a good suggestion.)

Finally, you can search-and-replace every instance of in your document with A.

Davislor
  • 44,045