如何将列表标题格式化为节而不是章(报告类)

如何将列表标题格式化为节而不是章(报告类)

在我的论文中,我在最后附上了一些 R 脚本作为附录。在附录中,我想要\lstlistoflistings

这会将列表格式化为章节(与目录相同)。

我该如何将其格式化为节?我只想避免在章节标题后出现分页符,并在其后放置列表,并使用较小的字体。

这是一个最小的工作示例

\documentclass{report}  

\usepackage{listings}
    \lstset{language=R}
    \renewcommand{\lstlistlistingname}{List of R scripts}


\begin{document}
\tableofcontents

\chapter{the first chapter}
    \section{section1}
some text
\chapter{the second chapter}

\addcontentsline{toc}{chapter}{Appendix A}
\chapter*{Appendix A}
\lstlistoflistings

\newpage
\begin{lstlisting}[caption=A script]
some code
\end{lstlisting}

\begin{lstlisting}[caption=Another script]
some more code
\end{lstlisting}

\end{document}

谢谢!

答案1

您可以加载tocbasicscrhack。然后您可以使用\setuptoc{lol}{leveldown}

\documentclass{report}

\usepackage{scrhack}
\usepackage{tocbasic}
\setuptoc{lol}{leveldown}

\usepackage{listings}
    \lstset{language=R}
    \renewcommand{\lstlistlistingname}{List of R scripts}

\begin{document}
\tableofcontents

\chapter{the first chapter}
    \section{section1}
some text
\chapter{the second chapter}
\chapter*{Appendix A}
\addcontentsline{toc}{chapter}{Appendix A}
\lstlistoflistings
\newpage
\begin{lstlisting}[caption=A script]
some code
\end{lstlisting}
\begin{lstlisting}[caption=Another script]
some more code
\end{lstlisting}
\end{document}

在此处输入图片描述

\chapter*我已更改和的顺序\addcontentsline以获取目录中正确的页码。

答案2

\lstlistoflistings(多么容易记住的名字 ;-))\tableofcontents实际上在内部使用,并\@starttoc稍微重新定义以应用,但仍然具有\chapter*标题\tableofcontents

在我看来,对 进行重新定义\lstlistoflistings以使其具有与 相同的外观更容易\tableofcontents

\documentclass{report}  
\usepackage{listings}
\lstset{language=R}
\renewcommand{\lstlistlistingname}{List of R scripts}


\makeatletter
\renewcommand{\lstlistoflistings}{%
  \begingroup
  \clearpage
  \section*{\lstlistlistingname% Taken from `article.cls`....
   \@mkboth{%
     \MakeUppercase\lstlistlistingname}{\MakeUppercase   
     \lstlistlistingname}
   }%
  \@starttoc{lol}
  \endgroup
}
\makeatother




\begin{document}
\tableofcontents

\chapter{the first chapter}
\section{section1}
some text
\chapter{the second chapter}

\addcontentsline{toc}{chapter}{Appendix A}
\chapter*{Appendix A}
\lstlistoflistings

\newpage
\begin{lstlisting}[caption=A script]
some code
\end{lstlisting}

\begin{lstlisting}[caption=Another script]
some more code
\end{lstlisting}

\end{document}

在此处输入图片描述

相关内容