我可以确认Janosch提供的解决方案几乎可以正常工作。
在我的情况下,我需要使用西班牙语字符:á,é,í,ó,ú,ñ,Á,É,Í,Ó,Ú,并尝试使用没有结果的解决方案,直到用xelatex而不是pdflatex编译文件。
无论如何,您应该在本地副本中或直接在公用文件中修改listings.sty并添加以下内容:
\lst@CCPutMacro
\lst@ProcessOther {"23}\#
\lst@ProcessLetter{"24}\textdollar
\lst@ProcessOther {"25}\%
\lst@ProcessOther {"26}\&
\lst@ProcessOther {"E1}{\'a}
\lst@ProcessOther {"C1}{\'A}
\lst@ProcessOther {"E9}{\'e}
\lst@ProcessOther {"C9}{\'E}
\lst@ProcessOther {"ED}{\'i}
\lst@ProcessOther {"CD}{\'I}
\lst@ProcessOther {"F3}{\'o}
\lst@ProcessOther {"D3}{\'O}
\lst@ProcessOther {"FA}{\'u}
\lst@ProcessOther {"DA}{\'U}
\lst@ProcessOther {"F1}{ñ}
\lst@ProcessOther {"D1}{Ñ}
在我的.tex文件中,我使用了以下选项进行列表:
\usepackage{listingsutf8}
\lstset{
inputencoding=utf8,
extendedchars=\true}
希望它可以帮助任何人,也许我们可以构造一个包含几乎所有UTF8字符的listing.sty ... :)