从整个占用的页面和中心的表格列表、图表列表和目录中删除章节

从整个占用的页面和中心的表格列表、图表列表和目录中删除章节
\documentclass[12pt,twoside]{mitthesis}
\usepackage[left=1.5in,right=1in,top=1in,bottom=1in]{geometry}
\usepackage{lgrind}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{caption}
\captionsetup[figure]{labelsep=space}
\usepackage{subcaption}
\usepackage[titles]{tocloft}
\usepackage{afterpage}
\usepackage{multicol}
\usepackage{cmap}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{url}
\usepackage{fancyheadings}
\usepackage{fancyhdr}

\usepackage{cases}

\usepackage{tocloft}
\renewcommand{\cfttoctitlefont}{\hspace*{\fill}\Huge\bfseries}
\renewcommand{\cftaftertoctitle}{\hspace*{\fill}}
\renewcommand{\cftlottitlefont}{\hspace*{\fill}\Huge\bfseries}
\renewcommand{\cftafterlottitle}{\hspace*{\fill}}
\renewcommand{\cftloftitlefont}{\hspace*{\fill}\Huge\bfseries}
\renewcommand{\cftafterloftitle}{\hspace*{\fill}}
\def\files{all}
\def\all{all}
\ifx\files\all \typeout{Including all files.} \else \typeout{Including only \files.} \includeonly{\files} \fi

\begin{document}
\setcounter{secnumdepth}{5}
\pagestyle{empty}
%\include{cover1}
\pagestyle{plain}
\pagenumbering{roman}
\setcounter{page}{2}

\let\cleardoublepage\clearpage

\pagenumbering{arabic}
%\mainmatter\pagestyle{fancy}
\pagestyle{fancy}
\fancyhf{}
%\usepackage{tocloft}
\renewcommand{\cfttoctitlefont}{\hspace*{\fill}\Huge\bfseries}

\renewcommand{\chaptermark}[1]{\markboth{\thechapter. #1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection. #1}}
\renewcommand{\subsectionmark}[1]{\markright{\thesubsection. #1}}
\renewcommand\thefigure{\thechapter.\arabic{figure}}
\renewcommand{\listfigurename}{List of Figures}
\renewcommand{\listtablename}{List of Tables}

\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables{}
\newpage

\include{Chap1_V1}
\let\cleardoublepage\clearpage
\include{Chap2_V1}
\let\cleardoublepage\clearpage

%\include{Refrences_V1}
\appendix
\include{biblio}
\end{document} 

答案1

我找不到该mitthesis课程,也不太清楚你在问什么。以下 MWE 可能会对你有所帮助(也可能不会)。

% centertocprob.tex SE 528927 Center ToC et al

\documentclass{report}
\usepackage{tocloft}

% centered Large Bold ToC title
\renewcommand{\cfttoctitlefont}{\hfil\Large\bfseries} 
\renewcommand{\cftaftertoctitle}{\hfill}

% page number after chapter title and centered 
\renewcommand{\cftchapfont}{\hfil\bfseries}
\renewcommand{\cftchapleader}{ \textperiodcentered}
\renewcommand{\cftchapafterpnum}{\cftparfillskip}
\makeatletter
\renewcommand{\@tocrmarg}{0pt}
\makeatother

\begin{document}
\tableofcontents
\chapter{First chapter}
\section{A section}
\chapter{Second chapter with a longer title}
\section{Another section}
\end{document}

以上内容将目录标题置于中心位置,并将章节条目大致置于目录中心位置。请阅读tocloft文档以了解相关内容。如果以上内容对您有帮助,那么您将需要对目录的条目(部分等)以及 LoF 和 Lot 中的条目执行类似操作。

祝你好运。GOM

相关内容