我尝试在“列表列表”的条目后面添加连字符,如下所示:
代码列表
代码 1--第一代码................................. 7
代码 2--第二代码................................. 8
使用以下代码...
\documentclass[12pt,openright,oneside,dvipsnames,a4paper,%
chapter=TITLE,section=TITLE,english]{abntex2}
\usepackage{textcomp}
\usepackage{caption}
\usepackage{listings}
\renewcommand{\lstlistingname}{Code} % Listings
\renewcommand{\lstlistlistingname}{List of Codes}%
\lstset{
language = [LaTeX]{TeX}
}
\AtBeginDocument{ %
\counterwithout{lstlisting}{chapter}
}
\begin{document}
\lstinputlisting[caption={First Code}]{code1.tex}
\lstinputlisting[caption={Second Code}]{code2.tex}
\end{document}
我有:
代码列表
代码 1 第一个代码 ................................. 7
代码 2 第二代码 ................................. 8
在此先感谢您的帮助。
答案1
以下是使用tocloft
包装和部分egreg 的回答到定制由 \lstlistoflistings 生成的列表列表?:
\documentclass[12pt,openright,oneside,dvipsnames,a4paper,%
chapter=TITLE,section=TITLE,english]{abntex2}
\usepackage{textcomp}
\usepackage{caption}
\usepackage{listings}
\usepackage{tocloft}
\renewcommand\lstlistingname{Code} % Listings
\renewcommand\lstlistlistingname{List of Codes}%
\lstset{
language = [LaTeX]{TeX}
}
\AtBeginDocument{ %
\counterwithout{lstlisting}{chapter}
}
\newlength\mylen
\begingroup
\makeatletter
\let\newcounter\@gobble\let\setcounter\@gobbletwo
\globaldefs\@ne \let\c@loldepth\@ne
\newlistof{listings}{lol}{\lstlistlistingname}
\newlistentry{lstlisting}{lol}{0}
\makeatother
\endgroup
\renewcommand\cftlstlistingpresnum{\lstlistingname~}
\settowidth\mylen{\cftlstlistingpresnum\cftlstlistingaftersnum}
\addtolength\cftlstlistingnumwidth{\mylen} %
\renewcommand\cftlstlistingaftersnum{\hfill\textendash\hfill}
\begin{document}
\lstlistoflistings
\begin{lstlisting}[caption={First Code}]
code1
\end{lstlisting}
\begin{lstlisting}[caption={Second Code}]
code2
\end{lstlisting}
\end{document}