我正在使用经过修改的文档类来撰写论文。在目录之后和简介章节之前,有一个不需要的空白页,这也破坏了我文档中的分页。请问我该如何处理?
以下是代码:
\documentclass[openany, showabstract,showacknowledgments]{thesis}
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{3}
\usepackage[utf8]{inputenc}
\usepackage[margin=1in] {geometry}
\usepackage{gb4e}
\usepackage{enumitem}
\title{My Thesis}
\author{Me}
\begin{document}
\maketitle
\chapter*{Abstract}
\chapter*{Acknowledgement}
\tableofcontents
%here exists the unwanted page as number 1
\chapter{Introduction/1.1}
\end{document}
ّ我相信.cls 文件中的问题出在这部分:
\newcommand\chapter{\if@openright\cleardoublepage\else\clearpage\fi
\thispagestyle{plain}
\global\@topnum\z@
\@afterindentfalse
\secdef\@chapter\@schapter}