我在使用 TeXstudio 和我的大学模板时遇到了麻烦(见下面的代码)。我需要对每个新章节使用命令\chapter
(显然),因此编号不会以 开头,0
因为documentclass
是scrbook
。显然,我正在使用基于 KOMA 脚本的文档类。
我现在的问题是,每次打开新的章节时,TeXstudio 都会清除整个页面,这会在当前章节的结尾和新章节的开头之间留下很大的空白。
我该如何解决这个问题,以便新章节在同一页的当前章节之后立即开始?
如果有人问,不,我不能使用其他包/模板或其他东西。我们必须使用这个模板来完成我们的学士论文。我只是想改变这个问题!
代码:
\documentclass[a4paper, 11pt, twoside, openany, DIV15, BCOR15mm]{scrbook}
\KOMAoptions{cleardoublepage=empty}
%
% Packages
\usepackage{hanser}
\usepackage{textcomp}
\usepackage{listings}
\usepackage{hyperref}
\clubpenalty = 10000
\widowpenalty = 10000 \displaywidowpenalty = 10000
\parindent0.0cm
\parskip1.5ex
\bibliographystyle{geralpha}
\setcounter{secnumdepth}{2}
\setcounter{tocdepth}{2}
\definecolor{codecolor}{rgb}{0.85,0.85,0.85}
\lstloadlanguages{[ANSI]C++, Java}
\lstset{basicstyle = \ttfamily \small}
\lstset{backgroundcolor=\color{codecolor}}
\lstset{extendedchars=true} \lstset{showstringspaces = false}
\raggedbottom
\setlength{\parskip}{2.0ex}
\setlength{\parindent}{0.0cm}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{} \fancyhead[L, RO]{\small \thepage}
\fancyhead[LO]{\small \nouppercase \leftmark}
\fancyhead[RE]{\small \nouppercase \rightmark}
\fancypagestyle{plain}{%
\fancyhead{} %
\renewcommand{\headrulewidth}{0pt} %
}
\setlength\abovecaptionskip {0.4em}
\setlength\belowcaptionskip {0.2em}
\renewcommand{\floatpagefraction}{0.99}
\raggedbottom
\begin{document}
\thispagestyle{empty}
\title{Aufbau eines Ticketsystems (Arbeitstitel)}
\date{11.~Juli~2018}
\author{, }
\maketitle
\pagenumbering{roman}
\tableofcontents
\pagenumbering{arabic}
...
\end{document}