在 gedit 中打开 tex 文件时出错

在 gedit 中打开 tex 文件时出错

我使用的是 notepad++ 5.8.5 版本。我在 notepad++ 上编辑的 .tex 文件无法在 gedit 上打开。我收到的错误是“无法识别字符集”

答案1

有两件事需要尝试(从命令行):

首先:

fromdos filename.tex

(需要 tofrodos 包)。

第二:

iconv -c -f UTF-8 -t UTF-8 filename.tex > filename-copy.tex

这应该会删除所有与 UTF-8 不兼容的字符。

\usepackage[utf8]{inputenc}(您还应该遵循其他答案中有关输入 .tex 源的建议。)

答案2

我的 latex 文件都是 utf8,可以在 Windows 和 Linux 上编译。

我会用UTF-8 without BOM

并添加

\usepackage[utf8]{inputenc}

在主文件中通知pdflatexlatex命令内容是UTF8

相关内容