图表列表后有页码的空白页

图表列表后有页码的空白页

编译 TeX 代码后,我在图片列表后得到了一个空白页。当我使用\clearpage命令时,页面会被删除,但它会减少整个文档的总页数。我正在使用报告类编写报告,如果我使用该命令,我的参考资料将仅限于一页,否则\clearpage将生成整个文档,但在图片列表后会得到一个空白页。有人能帮我解决这个问题吗?这是我正在编译的主要 TeX 代码。

\documentclass[12pt]{report}
\usepackage[T1]{fontenc}
\usepackage{times}
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=15mm,bmargin=30mm,lmargin=30mm,rmargin=20mm}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{float}
\usepackage{epstopdf}
\usepackage{setspace}
\usepackage{amsmath}
\usepackage{cite}
\usepackage{xcolor}
\usepackage{hyperref}
\hypersetup{colorlinks=true,urlcolor=blue,linkcolor=blue,citecolor=red}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\onehalfspacing
\makeatletter
\makeatother
\renewcommand\bibname{Bibliography}
\begin{document}
\begin{titlepage}
\thispagestyle{empty}
  <title page contents>
\end{titlepage}
\pagenumbering{roman}
\input{Certificate.tex}
\thispagestyle{empty}
\input{Declaration.tex}
\thispagestyle{empty}
\input{Acknowledgement.tex}
\thispagestyle{empty}
\input{Abstract.tex} 
\tableofcontents
\listoffigures
\let\clearpage\relax
\input{Nomenclature.tex}
\newenvironment{mydef}[1]{\begin{definition} #1 \mbox{\\}
\rm}{\end{definition}}
\pagenumbering{arabic}
\input{Introduction.tex}
\input{Chapter1.tex}
\input{Chapter2.tex}
\input{Chapter3.tex}
\input{Conclusion.tex}
\input{Reference.tex}
\end{document}

相关内容