General ⇒ Avoiding blank page between bibliography and appendix
Avoiding blank page between bibliography and appendix
Thanx again!
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
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
Re: Blank page problem
Patrick.
Avoiding blank page between bibliography and appendix
This is my preamble:
Code: Select all
\documentclass[a4paper,12pt,norsk]{report}
\pdfpagewidth 210mm
\pdfpageheight 297mm
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{lmodern}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{url}
\usepackage{epigraph}
\usepackage{setspace}
\doublespacing
\usepackage{graphicx}
\DeclareGraphicsExtensions{.eps}
\usepackage{rotating}
\usepackage{sectsty}
\usepackage{ccaption}
\usepackage{color}
Code: Select all
\begin{thebibliography}{99} \addcontentsline{toc}{chapter}{Bibliografi}
(My bibliography)
\end{thebibliography}
\chapter*{Filmografi}\addcontentsline{toc}{chapter}{Filmografi}
\begin{description}
(My list of films. A stupid way to make a filmography, probably, but...)
\end{description}
(Here latex inserts a blank page. I have no idea why. I thought maybe it did it by default?)
\appendix
\chapter{Bilde- og karaktergalleri}
{\footnotesize
\begin{picture}(150,300)
(My pics that I inserted with \includegraphics)
\end{picture}
}
Re: Blank page problem
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Avoiding blank page between bibliography and appendix
Marei wrote: By coincidence I just found that strangely enough this blank page only appears when I insert my picture environment.
Why do you use that strange code to insert your pictures? I assume the unit parameters of the picture environment were set to 1mm or something like that. But even if done so, the picture environment is too big to fit on a page.
Code: Select all
\appendix
\chapter{Bilde- og karaktergalleri}
{\footnotesize
\begin{picture}(150,300)
(My pics that I inserted with \includegraphics)
\end{picture}
}
Code: Select all
\begin{figure}[!ht] % or maybe [!p] to put the pictures on a page without any text
\subfloat[Caption for subfigure 1\label{subfig-1:pictures}]{\includegraphics[width=0.45\linewidth]{pic01}}
\subfloat[Caption for subfigure 2\label{subfig-2:pictures}]{\includegraphics[width=0.45\linewidth]{pic02}}
…
\caption{Caption for all pictures}\label{fig:pictures}
\end{figure}
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10