lstnewenvironments を相互参照するにはどうすればいいですか?

lstnewenvironments を相互参照するにはどうすればいいですか?

文書に を作成しましたlstnewenvironment。相互参照できません。

コードはこちら

\lstnewenvironment{customlistings}[3]{
\lstset{
numbers=left,
language=#3,
breaklines=true ,
keywordstyle=\color{blue}\bfseries ,
numberstyle=\tiny\color{gray} ,
commentstyle=\color{green!30!black},
stringstyle = \color{violet},
morekeywords={\begin, \label, \documentclass
, \usepackage, \caption},
label=#2
}
\refstepcounter{counterA}
\begin{center}
\textbf{\large{Listing \thecounterA: #1}} \\
\textbf{\normalsize{#2}}
\end{center}
}{}

これが私がそれをどのように使用したかです。

\begin{customlistings}{[LaTeX]TeX}{The listings package}{TeX}
\begin{lstlisting}
%Your code goes here

%This is usually how you present code in \LaTex, without worrying about accidentally  ..         

\end{lstlisting}

\label{trickq}
\end{customlistings}

参照したいのですが、1 が参照である「リスト 1」として表示されるはずです。Google で検索したり、このコードを別の環境に配置したり、\label を使用したりと、さまざまなことを試しましたが、ラベルは前のラベルから継続します。つまり、ドキュメントには 1 ではなく 4.2 が表示されます。助けてください。

答え1

listing手動で行う代わりにパッケージを使用します。

\documentclass{article}
\usepackage{listings,listing}
\usepackage{xcolor}

\lstnewenvironment{customlisting}[2][]
 {\lstset{
    basicstyle=\ttfamily,
    columns=fullflexible,
    numbers=left,
    language=#2,
    breaklines=true,
    keywordstyle=\color{blue}\bfseries,
    numberstyle=\tiny\color{gray},
    commentstyle=\color{green!30!black},
    stringstyle = \color{violet},
    morekeywords={\begin, \label, \documentclass, \usepackage, \caption},
    #1,
  }%
 }{}

\begin{document}

\begin{listing}

\begin{customlisting}{[LaTeX]TeX}
%Your code goes here

%This is usually how you present code in \LaTex, without worrying about accidentally  ..
\end{customlisting}

\caption{The listing package}\label{TeX}

\end{listing}

\ref{TeX} is a listing

\end{document}

パッケージを使用してキャプションの外観をカスタマイズできますcaption

ここに画像の説明を入力してください

関連情報