如何删除摘要或致谢中的表格列表(或图表、缩写)?

如何删除摘要或致谢中的表格列表(或图表、缩写)?

我正在使用 LaTex 撰写论文,我有如下清单;

  • 表格列表
  • 缩略词列表
  • 致谢
  • 抽象的

但是,我不知道页面顶部的致谢或摘要中是否有“首字母缩略词列表”。我想从摘要中删除它。请看我的图。请给我你的想法。非常感谢

在此处输入图片描述

以下是主要代码

\documentclass[11pt,makeidx,twoside]{phdthesis}
\usepackage{fancyheadings}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{epsfig}
\usepackage{subfigure}
\usepackage{graphics}
\usepackage{float}
\usepackage{here}
\usepackage{rotating}
\usepackage{multirow}
\usepackage{comment}
\usepackage{captionhack}
\usepackage{epigraph}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{titlesec}
\usepackage{cite}
\usepackage{avant}
\usepackage{makeidx}     % to create make automatically an index
\makeindex
\usepackage{fancyhdr}
\usepackage{epsfig}
\usepackage{float}
\usepackage{here}
\usepackage{rotating}
\usepackage{multirow}
\usepackage{comment}
\usepackage{epigraph}
\usepackage{nomencl}
\usepackage{hyperref}
\usepackage{acronym}
\usepackage{booktabs}
\usepackage{array}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage{rotating}
\usepackage{caption}
 \usepackage[titletoc]{appendix}
\usepackage[capitalise]{cleveref}


\renewcommand{\thesubfigure}{}

\newcommand{\footnoteremember}[2]{
  \footnote{#2}
  \newcounter{#1}
  \setcounter{#1}{\value{footnote}}
} \newcommand{\footnoterecall}[1]{
  \footnotemark[\value{#1}]
}


%%% Path to the directory containing the graphics and figures
\graphicspath{{./figures/}}


%%% General page formatting
\renewcommand{\textfraction}{0.01}
\renewcommand{\topfraction}{0.99}
\renewcommand{\floatpagefraction}{0.99}
\renewcommand{\bottomfraction}{0.99}

\newenvironment{Abstract}
{\begin{center}\textbf{Abstract}%

 \end{center} \small \it \begin{quote}}
{\end{quote}}

%\pdfcompresslevel=3

\typeout{Dissertation}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\includeonly{title_page,acronyms,acknowledgements,abstract,chapter_1,chapter_2,chapter_3,chapter_4,chapter_5,Appendix1,Appendix2}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%% Beginning of the document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


\begin{document}

\pagestyle{fancyplain}
\include{title_page}
\pagenumbering{roman}


%% create the table of contents
\cleardoublepage \lhead[]{\fancyplain{}{\rightmark}}
\chead[\fancyplain{}{}]{\fancyplain{}{}}
\rhead[\fancyplain{}{\leftmark}]{\fancyplain{}{}}

\tableofcontents
\listoffigures
\listoftables

\include{acronyms}
%%  add the acknowledgements to the table of contents
\include{acknowledgements}
\include{abstract}

\cleardoublepage
\newcommand{\publ}{}

\pagestyle{fancyplain}
\renewcommand{\headrulewidth}{0.3pt}
\renewcommand{\footrulewidth}{0.0pt}
\renewcommand{\plainfootrulewidth}{0.0pt}
\renewcommand{\plainheadrulewidth}{0pt}
\renewcommand{\sectionmark}[1]{\markright{\it \thesection.\ #1}}
\renewcommand{\chaptermark}[1]{\markboth{
       \it \thechapter.\ #1}{}}
\lhead[\thepage]{\fancyplain{\publ}{\rightmark}}
\chead[\fancyplain{}{}]{\fancyplain{}{}}
\rhead[\fancyplain{}{\leftmark}]{\fancyplain{}{\thepage}}
\lfoot[]{}
\cfoot[]{}
\rfoot[]{}
\pagenumbering{arabic}
\include{chapter_1} 
\end{document}

以下是缩写代码

\chapter*{List of Acronyms}
\markboth{List of Acronyms}{}
\begin{acronym}[]

\acro{Acronyms}{Meaning} 
\acro{AMC}{Adaptive Modulation and Coding}

\end{acronym} 

答案1

我通过添加以下内容修复了类似的问题:

\pagestyle{empty}

在我不想要页眉和页脚的部分之前。

我补充说

\pagestyle{fancy}

我希望出现的地方……

尝试在此处添加 \pagestyle{empty}:

\pagestyle{empty} %<------ HERE
\tableofcontents
\listoffigures
\listoftables

\include{acronyms}
%%  add the acknowledgements to the table of contents
\include{acknowledgements}
\include{abstract}

相关内容