完全部分转自
LaTeX目录定制
\titlecontents{标题名}[左间距]{标题格式}{标题标志}{无序号标题}{指引线与页码}[下间距]
示例如下,第一个参数的section表示标题名,第三个参数{\bf \large}表示字体,粗体,大号,最后一个参数中的\hspace*{3cm}是为了产生一个右间距,使左右对称,因为前边左间距设置的也是3cm.
\titlecontents{section}
[3cm]
{\bf \large}%
{\contentslabel{2.5em}}%
{\titlerule*[0.5pc]{$\cdot$}\contentspage\hspace*{3cm}}%
加入参考文献到目录,这里\addcontentsline{toc}{section}{#name}
只是把#name
以section
的层级显示在目录上,并不在正文添加任何东西,\appendix
只是改变其后section
等的序号的表示风格,如将Arabic
变为Rome
,并不会再正文添加大写的"目录"字样
\titlecontents{section}
[3cm]
{\bf \large}%
{\contentslabel{2.5em}}%
{\titlerule*[0.5pc]{$\cdot$}\contentspage\hspace*{3cm}}%
\titlecontents{subsection}
[4cm]
{\bf \normalsize}%
{\contentslabel{2.5em}}%
{\titlerule*[0.5pc]{$\cdot$}\contentspage\hspace*{3cm}}%
\newpage
\addcontentsline{toc}{section}{参考文献} %向目录中添加条目,以章的名义
\bibliographystyle{plain}
\bibliography{RefDBase}
\newpage
\addcontentsline{toc}{section}{编程代码} %向目录中添加条目,以章的名义
\appendix
\section{程序代码}
\lstset{ 。。。设置。。。
\subsection{冒泡排序代码}
\begin{lstlisting}[language={[ANSI]C},title={bubbleSort.c}]
。。。代码。。。
\end{lstlisting}
\subsection{Python代码}
\lstinputlisting[language=Python, title=myPython.py]{myPython.py}