刪除編號和章節,但保留在目錄中

刪除編號和章節,但保留在目錄中

我正在使用\documentclass{book}兩個包toclofttitlesec.

我不知道是否有辦法從我的中刪除編號和“章節”(例如“簡介”)\chapter,但將它們保留在目錄中(例如“第一章:簡介”)

到目前為止,我已經設法刪除數字(例如“章節簡介”)或“章節”。

\documentclass[openany]{book}
\usepackage[a4paper]{geometry}
\usepackage{multicol}
\usepackage{parskip}
\usepackage{graphicx}
\usepackage{changepage}
\usepackage{fancyhdr}
\pagestyle{plain}


%CHAPTER FORMAT
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\centering\Huge\bfseries}
{\chaptername\ \thechapter}{0pt}{\Huge}
\titleformat{\section}
{\Huge\bfseries}
{}{1em}{}
\titleformat{\subsection}
{\LARGE}
{}{1em}{}

%TABLE OF CONTENTS 
\usepackage[titles]{tocloft}
\usepackage[toc]{multitoc}
\renewcommand\cftchapfont{}
\renewcommand\cftsecfont{}
\renewcommand\cftchappagefont{\normalsize}
\renewcommand\cftsecpagefont{\small}
\renewcommand{\contentsname}{\centering Contents}
\title{Pax Romana}
\begin{document}
\tableofcontents
\chapter{Introduction}
\chapter{Chp1}
\chapter{Chp2}
\end{document}

這些給了我 ToC 中的「第 1 章簡介」和「1 簡介」。如果可能的話book,我需要實作ToC中的「引言」和「第1章:引言」。

有什麼指導嗎?

答案1

\documentclass{book}
\usepackage{kantlipsum}   %% for demo
%CHAPTER FORMAT
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\centering\Huge\bfseries}
{}{20pt}{}
\titlespacing*{\chapter}{0mm}{-20pt}{40pt}    %% adjust -20pt as you want

%TABLE OF CONTENTS
\usepackage[titles]{tocloft}
\setlength\cftchapnumwidth{6em}
\renewcommand\cftchappresnum{Chapter~}
\renewcommand\cftchapaftersnum{:}
\begin{document}
  \tableofcontents
  \chapter{Introduction}
  \kant
\end{document}

在此輸入影像描述

相關內容