表格列表后的页码

表格列表后的页码

首先,我寻找解决方案,但找不到。尽管我也遇到过类似的问题。但没有一个解决方案对我有用。 链接 1

\documentclass[12pt, a4paper]{report}

\linespread{1.4}



\begin{document}

\begin{titlepage}
\input{TitlePage}
\end{titlepage}

\pagenumbering{gobble}
\input{certificate}
\input{projectapprovalsheet
\input{abstract}
\pagenumbering{roman}
\input{ack}
\input{tableofcontents} 

\input{listoffigures}
\input{listoftables}
\newpage   //here is the problem
\cleardoublepage  //as per the solution I got
\pagenumbering{arabic}
\pagestyle{fancy}
\fancyhf{}
\fancyfoot[R]{\thepage}
\setcounter{page}{1}    //as per the solution
\input{chap1}
\end{document}

但我仍然得到一张空白页,第一章从第 2 页开始在此处输入图片描述

答案1

这对我来说很有用,在 LoT 之后不提供空白页并且第一章从第 1 页开始。

\documentclass{report}
\begin{document}
\pagenumbering{roman}
TITLE STUFF ETC
\tableofcontents
\listoffigures
\listoftables
\cleardoublepage
\pagenumbering{arabic}
\chapter{First}
Some text.
\begin{figure}
\centering
FIGURE
\caption{Figure}
\end{figure}
\begin{table}
\centering
\caption{Table}
TABLE
\end{table}
\end{document}

但是,如果您使用该twoside选项\documentclass[twoside]{report},那么上述内容可能会在 LoT(罗马页码)和第一章(阿拉伯页码 1)之间留下一个空白页。

相关内容