Page Layout ⇒ How to remove empty page after appendix in scrbook
-
Georg
How to remove empty page after appendix in scrbook
How to remove empty pages after each appendix in scrbook. Sometimes I have empty pages after appendices and sometimes no empty pages after other appendices.
Thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
How to remove empty page after appendix in scrbook
welcome to the forum!
Chapters start at right hand pages (1, or 3, or 5, ..). If necessary, an empty page is inserted, to avoid that a chapter begins at a left hand page. Appendices are chapters, so it's the same. If you don't want that, add the document class option
openany.Stefan
-
Georg
How to remove empty page after appendix in scrbook
Thank you.
I'm actually using openany. But still sometimes I have empty pages after some appendices and sometimes no empty pages after other appendices.
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
How to remove empty page after appendix in scrbook
can you show us what sometimes happens? Here's a good explanation how to extract and post relevant code:
Stefan
-
Georg
How to remove empty page after appendix in scrbook
I mean after appendix B, C, E and F there are empty pages and no empty pages after other appendices. Empty pages are page 7, 9, 12 and 14.
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
How to remove empty page after appendix in scrbook
openany, there are no empty pages. It seems your code contains something non-default. A \clearpage, \newpage, or some pretty hidden setting. It can hardly be pointed to without seeing the code.Stefan
-
Georg
How to remove empty page after appendix in scrbook
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
How to remove empty page after appendix in scrbook
Stefan
-
Georg
How to remove empty page after appendix in scrbook
\begin{figure}[H]
\centering
\includegraphics[width=0.9\linewidth, height=0.7\textheight]{Appendices/6}
\begin{center}
\textit{\textbf{Source:}}~\citet{author}.Text text text
\end{center}
\end{figure}
%here I have empty page
\chapter{text7}
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
How to remove empty page after appendix in scrbook
That's a good way, including the proper way of making a caption:
Code: Select all
\begin{figure}[htbp!]
\centering
\includegraphics[width=0.9\linewidth, height=0.7\textheight]{Appendices/6}
\caption{\textbf{Source:}~\citet{author}.Text text text}\label{app:6}
\end{figure}