I have searched and read related post in the forum, but didn´t find a solution which can make the blank page disappear. I have used
\nopagebreak[0]
before, and it worked, but I dont know why it doesnt work anymore when I have changed my print type to oneside from twoside.
=======================================================
I know where the blank page comes out, and it can be removed by delete one line in "List of Abbreviations", but I still need all the information. Is there a way to get away the blank page but also keep all the information in List of Abbreviations?
\documentclass[a4paper, 12pt, headsepline,DIV=12,oneside]{report}
\usepackage{mathptmx} %times new roman font
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[backend=bibtex,
style=numeric,natbib=true,sorting=none]{biblatex}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{parskip}
\usepackage{array}
\usepackage{float}
\usepackage{textcomp}
\usepackage{csquotes}
\usepackage{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
\automark[section]{chapter}
\ohead{\pagemark}
\ihead{\headmark}
\usepackage[normalem]{ulem}
\usepackage{blindtext}
\usepackage{array, booktabs, caption}
\usepackage{multicol}
\usepackage{multirow}
\usepackage{ltxtable}
\setlength{\tabcolsep}{10pt}
\renewcommand{\arraystretch}{1.5}
\usepackage{longtable}
\setlength{\tabcolsep}{13pt}
\renewcommand{\arraystretch}{1.5}
\usepackage{lipsum}
\begin{document}
\setcounter{secnumdepth}{-1}
\pagestyle{empty}
\pagestyle{scrheadings}
\pagenumbering{roman}
\chapter{Abstract}
\blindtext
\nopagebreak[0]
\chapter{List of Abbreviations}
\thispagestyle{plain}
\begin{tabular}{ll}
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
ABS & Anti-lock Brake System \\
\end{tabular}%
\label{tab:addlabel}%
\lipsum[1-0]
\setcounter{secnumdepth}{3}
\tableofcontents
\clearpage
\pagenumbering{arabic}
\chapter{Chapter1}
\blindtext
\pagenumbering{roman}
\setcounter{page}{10}
\end{document}
Thank you for your help!
\includedoes not force a blank page. – David Carlisle Jan 08 '17 at 23:19\includefor the list of abbreviations and the abstract is the right tool to use:\inputis much easier and less troublesome. – egreg Jan 08 '17 at 23:29*.texfiles individually for performance reasons, especially if they contain pictures. Therefore you should start using the{subfiles}package right away. refer to this answer for details: http://tex.stackexchange.com/questions/347721/compiling-multiple-latex-files/347732#347732 – Timothy Truckle Jan 08 '17 at 23:42\includeis that it allows chapters to be processed one at a time if needed. No extra package is needed for that. – David Carlisle Jan 08 '17 at 23:52longtablerather than a regulartabularfor your abbreviations. – Werner Jan 09 '17 at 01:12\includeis, that you have to comment all other chapters/sections and run LaTeX against the main document. And things get worse if you go down the hirarchy and separate (sub-)sections in their own files too... With the{subfiles}package you don't need to change anything in in any of the files to compile a single one. Just invoke LaTeX on the desired. I for myself found that this simpified my workflow... – Timothy Truckle Jan 09 '17 at 06:59\includeonly– David Carlisle Jan 09 '17 at 07:48\includeonlyeases the pain a little but I still have to change the document and compile against the main file. But anyway, I wonder why you argue agains the alternative of{subfiles}package, nobody forces you to use it... – Timothy Truckle Jan 09 '17 at 08:09