Я сделал 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, но тогда моя метка продолжает предыдущую метку, то есть в документе отображается 4.2 вместо 1. Пожалуйста, помогите.
решение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
пакета.