自定义章节标题

自定义章节标题

我目前正在使用书籍类撰写论文。我试图以这种方式显示目录:

目录

每个章节的显示方式如下:

章节

我对 Latex 还不太熟悉,这是我第一次写论文,所以我不知道如何用这种方式格式化。任何想法都很好!

谢谢!

答案1

以下通过\l@chapter补丁etoolbox足够了:

在此处输入图片描述

\documentclass{report}
\usepackage{etoolbox}% http://ctan.org/pkg/etoolbox
\makeatletter
\patchcmd{\l@chapter}% <cmd>
  {#1}% <search>
  {\def\numberline##1{\@chapapp~##1\hfill\mbox{}\par\nobreak}#1}% <replace>
  {}{}% <success><failure>
\makeatother

\begin{document}

\tableofcontents

\chapter{Introduction}

\chapter{Preliminaries}
\section{Problem definition}
\section{Genetic algorithms}
\section{Ant algorithms}
\section{Previous work}
\end{document}

相关内容