是否可以将章节号和章节显示在目录的单独行上?

是否可以将章节号和章节显示在目录的单独行上?

所需目录

我正在写一篇大学小论文。目录非常不标准。如何在 LaTeX 中重新创建此目录。甚至更奇怪的要求可能是这样的

第一章

  1. 介绍

    1.1苹果

    1.2

    1.3

第二章

  1. 文献综述

    2.1什么苹果?

    2.2受挫的原子

可以创建这个吗?我尝试使用 titlesec 包,但做不了什么。我现在在序言中已经写了这个。

\titleformat
{\chapter} % command
[display] % shape
{\bfseries\Large\itshape} % format
{CHAPTER \ \Roman{chapter}} % label
{0.5ex} % sep
{
    \rule{\textwidth}{1pt}
    \vspace{1ex}
    \centering
} % before-code
[
\vspace{-0.5ex}%
\rule{\textwidth}{0.3pt}
] % after-code


\titleformat{\section}[wrap]
{\normalfont\bfseries}
{\thesection.}{0.5em}{}

\titlespacing{\section}{12pc}{1.5ex plus .1ex minus .2ex}{1pc}

答案1

我希望这对你有用。

% chaptocprob.tex  SE 652705
\documentclass{report}
\usepackage{tocloft}

\renewcommand{\cftchappresnum}{Chapter }
\renewcommand{\cftchapaftersnumb}{\\} 

\begin{document}
\tableofcontents

\chapter{One}
\section{Alpha}
\chapter{Two}
\section{Beta}

\end{document}

在此处输入图片描述

请确认它是否能实现您可以使用的功能。

相关内容