lstlisting 中的 Unicode 字元

lstlisting 中的 Unicode 字元

我需要在論文的附錄中包含程式碼。程式碼包含註釋,編譯立即中斷返回:

Unicode char �\lst@FillFixed@ (U+5A8)
(inputenc)                not set up for use with LaTeX.
l.160       if (lastArg < 0, lastArg = 360° 
                                             + lastArg);

這只是產生問題的眾多字元之一。我不能僅僅因為無法編譯就更改整個程式碼。有什麼方法可以包含任意 unicode 字元的程式碼嗎?謝謝。

編輯:根據要求提供完整的範例程式碼。

\RequirePackage[l2tabu,orthodox]{nag}


\documentclass[headsepline,footsepline,footinclude=false,oneside,fontsize=11pt,paper=a4,listof=totoc,bibliography=totoc]{scrbook} % one-sided


\usepackage[toc,page]{appendix}
\usepackage{listings}
\usepackage[utf8]{inputenc}

\lstset{
    inputencoding=utf8,
  extendedchars=true,
  basicstyle=\footnotesize\ttfamily,
  showstringspaces=false,
  showspaces=false,
  numbers=left,
  numberstyle=\footnotesize,
  numbersep=9pt,
  tabsize=2,
  breaklines=true,
  showtabs=false,
  captionpos=b,
    literate={ö}{{\"o}}1 {ä}{{\"a}}1 {ü}{{\"u}}1 
}

\begin{document}

\begin{appendices}
\lstinputlisting{code/power_series.html}
\end{appendices}

\end{document}

相關內容power_series.html

if (lastArg < 0, lastArg = 360° + lastArg);

對於這個問題,確實沒什麼好說的。我只希望能夠使用清單中的所有 unicode 字元。謝謝。

答案1

以正確的方式定義 Unicode 字元。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{listingsutf8}

\protected\def\dg{\ensuremath{^\circ}}
\DeclareUnicodeCharacter{05A8}{\dg}

\lstset{
    inputencoding=utf8,
  extendedchars=true,
  basicstyle=\footnotesize\ttfamily,
  showstringspaces=false,
  showspaces=false,
  numbers=left,
  numberstyle=\footnotesize,
  numbersep=9pt,
  tabsize=2,
  breaklines=true,
  showtabs=false,
  captionpos=b,
  literate={ö}{{\"o}}1 {ä}{{\"a}}1 {ü}{{\"u}}1 {°}{\dg}1
}

\begin{document}

\lstinputlisting{\jobname.html}

\end{document}

\jobname.html文件包含

if (lastArg < 0, lastArg = 360° + lastArg);

這是輸出。

在此輸入影像描述

相關內容