So erstellen Sie zwei \lstinputlistings in einer Auflistung

So erstellen Sie zwei \lstinputlistings in einer Auflistung

Im folgenden Dokument:

\usepackage{longtable}
\usepackage{amsmath}
\usepackage{url}
\usepackage{booktabs} % For formal tables
\usepackage{listings}
\usepackage{color}
\usepackage{commath}
\usepackage{float}

\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}

\lstset{frame=tb,
    language=Java,
    aboveskip=3mm,
    belowskip=3mm,
    showstringspaces=false,
    columns=flexible,
    basicstyle={\fontsize{7}{8}\ttfamily},
    numbers=left,
    stepnumber=1,
    numberstyle=\tiny\color{gray},
    keywordstyle=\color{blue},
    commentstyle=\color{dkgreen},
    stringstyle=\color{mauve},
    breaklines=true,
    breakatwhitespace=true,
    tabsize=3
}

\begin{document}
    \lstinputlisting[language=Java,caption={A simple Java method}, label={lst:defectExample}, captionpos=b]{./CodeSnippets/DefectExample.java}

    \lstinputlisting[language=Java,caption={Testing the method}, label={lst:defectExample}, captionpos=b]{./CodeSnippets/DefectExampleTest.java}
\end{document}

Wie kann ich die beiden lstinputlistingin einer Auflistung zusammenfassen und jede hat ihre eigene Überschrift? Ich habe versucht, sie hinzuzufügen, \begin{listing} \end{listing}aber es ist eine Fehlermeldung aufgetreten Environment listing undefined. \begin{listing}.

Kann mir jemand helfen, das zu beheben?

verwandte Informationen