删除空白页

删除空白页

我有两个问题:

(1)我的 Latex 文档中有一个空白页,我不知道如何删除它。

(2)我不明白为什么我的摘要没有标题。

我的代码:

\documentclass[12pt,twoside]{ociamthesis}  % default square logo 

\usepackage[bottom=37mm,top=30mm,left=33mm,right=33mm]{geometry}
\usepackage{natbib}
\usepackage{calc}
\usepackage{aas_macros}
\usepackage{color}
\usepackage{longtable}
\usepackage{amsmath, amsthm, amssymb, amsfonts}
\usepackage{times}
\usepackage{microtype}

\usepackage{graphicx}
\usepackage{longtable}
\usepackage{eucal}
\usepackage{hyperref}
\usepackage{multicol}
\usepackage{nomencl}
\usepackage{geometry}
\usepackage{setspace}
\usepackage{rotating}
\usepackage{changepage} % for temp adjustment of page margin
\usepackage{gensymb}
\usepackage{subfigure}
\usepackage{dcolumn}
\usepackage{booktabs}
\usepackage{xfrac}
\usepackage{fancyhdr}

\usepackage[font={footnotesize}]{caption}
\let\oldtabular\tabular
\renewcommand{\tabular}{\footnotesize\oldtabular}

\include{mymacros}
\makenomenclature
\renewcommand{\nomname}{List of Symbols}
\renewcommand*{\nompreamble}{\begin{multicols}{2}}
\renewcommand*{\nompostamble}{\end{multicols}}
\setlength{\columnsep}{3em}


\title{My Title}
\abstracttitle{Abstract Title}

\author{my name}             %your name
\college{my college}             %your college

\degreelevel{Degree}     %the degree
\degreedate{2015}         %the degree date

\DeclareMathSizes{12}{13}{8}{10}  % For size 12 text 

\begin{document}

\baselineskip=24pt plus1pt % this looks about double-line

\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}


\maketitle                  % create a title page from the preamble info
\include{dedication} 
\newgeometry{bottom=2.4cm,top=2.2cm,left=3.2cm,right=3.2cm}
\baselineskip=18pt plus1pt % this looks pretty good for the TOC
\include{acknowledgement}   % include an acknowledgements.tex file

\pagenumbering{gobble}
\include{declaration} % include a declaration.tex file    

\baselineskip=18pt plus1pt % Looks pretty good for the abstract etc.
\newgeometry{bottom=2.6cm,top=2.4cm,left=3cm,right=3cm}
\include{abstract}          % include the abstract

\begin{romanpages}          % start roman page numbering

\tableofcontents            % generate and include a table of contents
\newgeometry{bottom=2.4cm,top=2.2cm,left=3.2cm,right=3.2cm}

\baselineskip=18pt plus1pt % this looks pretty good for the TOC
\listoffigures              % generate and include a list of figures
\listoftables              % generate and include a list of tables

\end{romanpages}                 % end roman page numbering

\pagenumbering{arabic}

\newgeometry{bottom=4cm,top=4cm,left=3.2cm,right=3.2cm}
\baselineskip=24pt plus1pt % change back to normal spacing

\doublespacing

\include{chapter1} % Chapter1
\include{chapter2} % Chapter2
\include{chapter3} % Chapter3
\include{chapter4} % Chapter4
\include{chapter5} % Chapter5
\include{chapter6} % Chapter6
\include{conclusions} % Conclusions

\phantomsection
\addcontentsline{toc}{chapter}{References}
\renewcommand{\bibname}{References} % changes bibliography name to references
\baselineskip=14pt plus1pt % compress the references a bit

\bibliographystyle{./aa}
\bibliography{./references}

\end{document}

答案1

您应该尝试将选项添加openany\documentclass指令中:

\documentclass[12pt,twoside,openany]{ociamthesis}

相关内容