清單中未定義的控制序列

清單中未定義的控制序列

我正在嘗試使用清單包來格式化我的程式碼,使其看起來像 Java 程式碼。這是我嘗試使用的 MWE:

\documentclass[a4paper,11pt]{report} 

\usepackage[utf8]{inputenc} % utf8
\usepackage[T1]{fontenc} 
\usepackage{xcolor}

\usepackage{listings}

\definecolor{pblue}{rgb}{0.13,0.13,1}
\definecolor{pgreen}{rgb}{0,0.5,0}
\definecolor{pred}{rgb}{0.9,0,0}
\definecolor{pgrey}{rgb}{0.46,0.45,0.48}
\definecolor{annotation}{cmyk}{0, 0, 1, 0.2}

\lstdefinestyle{Java}{  
    language=Java, %if declared outside, causes problems
    showspaces=false,
    showtabs=false,
    breaklines=true,
    showstringspaces=false,
    breakatwhitespace=true,
    commentstyle=\color{pgreen},
    keywordstyle=\color{pblue},
    stringstyle=\color{pred},
    basicstyle=\ttfamily\singlespacing,
    moredelim=[il][\textcolor{annotation}]{\$\$},
    moredelim=[is][\textcolor{annotation}]{\%\%}{\%\%},
    rulecolor= \color{black} 
}

\begin{document}
    \lstset{style=Java}
    \begin{lstlisting}
        public byte getSelectedPortAsByte(){
            int temp;

            switch(selectedPort){
                case "PORTB":
                    temp= 0x01;
                    break;
                case "PORTC":
                    temp= 0x02;
                    break;
                case "PORTD":
                    temp= 0x03;
                    break;
                default:
                    temp= 0x00;
                break;
            }
            return (byte)temp;
        }
    \end{lstlisting}
\end{document}

當嘗試建立它時,我收到以下錯誤訊息:第 34 行:未定義的控制序列。 \begin{lstlisting} 我正在使用 TexStudio 2.12.6、Win7、MikTeX 2.9。

我在這裡遺漏了一些明顯的東西嗎?

答案1

不幸的是,這是編輯器誤導您的眾所周知的錯誤,錯誤訊息是

! Undefined control sequence.
\lst@basicstyle ->\ttfamily \singlespacing 

由於未定義單間距(setspace可能需要套件),編輯器僅顯示 tex 偵測到錯誤的最無用的上下文的最後一行

l.33     \begin{lstlisting}

https://sourceforge.net/p/texstudio/feature-requests/1068/

相關內容