Whatever I try, I cannot "force" listoffigures and bibliography to be rendered in wanted position. They allways end up on next page, even if there is enough space in previous (wanted) page.
CODE:
\documentclass[a4paper, 12pt]{book}
\chapter{Appendix}
\section{List of figures}
\renewcommand*\listfigurename{} % remove title
\listoffigures{}
\chapter{Bibliography}
\renewcommand\bibname{} % remove title
\begin{thebibliography}{99}
RESULT:
Chapter 6
APPENDIX
6.1 List of figures
*
*
*
*
*
(ACTUAL LIST)
(new page)
Chapter 7
Bibliography
*
*
*
*
*
(ACTUAL BIBLIOGRAPHY)
WANTED RESULT:
Chapter 6
APPENDIX
6.1 List of figures
(ACTUAL LIST)
(new page)
Chapter 7
Bibliography
(ACTUAL BIBLIOGRAPHY)
I hope you get the picture, what am I trying to say (those asterisks represent blank spaces).
\chapter. This macro start your chapters on a new page. Which document class are you using? – Kurt Sep 17 '12 at 18:36thebibliographyenvironment starts a new chapter in thebookclass (with your redefinition of\bibname, a chapter without name, but a chapter nevertheless). – lockstep Sep 17 '12 at 18:52@sign plus the username like I did now. It should be possible to come up with a solution. – lockstep Sep 17 '12 at 19:32