Emacs: AUCTeX-LaTeX compilation error

I have been using LaTeX with Emacs and AUCTeX for 2 years and I have no problem. However, yesterday, when I tried to compile the master file, LaTeX gave me a strange error:

ERROR: Package input error: Unicode char \ u8: \ 303 \ lst @FillFixed @ is not configured to use

--- TeX said --- with LaTeX.

See the documentation on the input documentation for an explanation. Enter H for immediate help ....

l.963 magicamente, è ancora intatto. È una struttura solidamente costruita p>

I think the problem is in the encoding format ( è È), but I don’t understand why this problem occurs only for one “subordinate” file, and not for others.

The encoding used is UTF-8 and is installed both in my file .emacsand in the main LaTeX file. Moreover, a mode line says Uthat indicates that UTF-8 is used as the encoding for the buffer.

Do you have any suggestions to solve my problem?

+3
source share
2 answers

If this 303should be a unicode point for è or È, then I think something is wrong. It should be 232 (0xE8) respectively. 200 (0xC8). Have you tried re-entering these characters?

+1
source

You tried

\usepackage[utf8]{inputenc}

It has some limitations - see Icelandic, utf8 and utf8x in LaTeX

0
source

Source: https://habr.com/ru/post/1764460/


All Articles