我怎样才能改变下面显示的 \tableofcontents 的样式:
我希望样式类似于下面的示例:
以下是我的 main.tex 中的部分代码:
\documentclass[11pt, a4paper]{article}
\usepackage[nochapters]{classicthesis} % template
\usepackage[margin=42mm]{geometry} % margins
\usepackage[utf8]{inputenc} % allow utf-8 input
\usepackage[T1]{fontenc} % use 8-bit T1 fonts
\usepackage{graphicx} % images
\usepackage{url} % URL typesetting
\usepackage{booktabs} % good-looking tables
\usepackage{multirow} % for tables
\usepackage{amsfonts} % blackboard math symbols
\usepackage{amsmath} % math ops
\usepackage{nicefrac} % compact 1/2, etc.
\usepackage{microtype} % microtypography
\definecolor{darkblue}{rgb}{0, 0, 0.5} % define link color
\hypersetup{colorlinks=true,citecolor=darkblue, % set link color
linkcolor=darkblue, urlcolor=darkblue}
%%% Custom Commands %%%
% Centering image
\makeatletter
\newcommand*{\centerfloat}{%
\parindent \z@
\leftskip \z@ \@plus 1fil \@minus \textwidth
\rightskip\leftskip
\parfillskip \z@skip}
\makeatother
% Your packages here
\usepackage{graphicx}
\usepackage{tabulary}
\usepackage{array}
\usepackage[normalem]{ulem}
\useunder{\uline}{\ul}{}
\usepackage[toc,page]{appendix}
\usepackage{float}
\usepackage[style=apa, natbib=true, backend=biber]{biblatex}
% this bit is required in any case
%(change name if you use a different bib file)
\addbibresource{references.bib}
% !!! ------------------------------------------------------ !!!
\begin{document}
\input{frontmatter.tex} % don't remove this :)
\tableofcontents
\newpage
提前致谢。