General ⇒ thebibliography spilling into Appendix
thebibliography spilling into Appendix
My bibliography spills into my Appendix section. Please help. After writing my last section, I have a
\begin{Appendix}
figure1
figure2
.
.
.
figure6
\end{Appendix}
\begin{thebibliography}{1}
\end{thebibliography}
The .pdf output has part of my bib wedged between my figure 2 and 3 etc. What a mess! The figures do take up a few pages. And I would like them to stay together. So how do I ensure that the bib also appears continuously without interruptions? How can I call so that the bib starts in a new page/new section after my Appendix?
Thanks so much!
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: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
thebibliography spilling into Appendix
there is no appendix environment with the standard classes. Just write \appendix instead of \begin{appendix} ... \end{appendix}.
You could use \clearpage (\cleardoublepage) to force the output of floating figures before the beginning of the bibliography. Alternatively you might use \FloatBarrier of the placeins package.
Stefan
Re: thebibliography spilling into Appendix
As
\Appendix
which I do like better because it does not enumerate this section. How do I get the word 'Appendix' to proceed this section?
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
thebibliography spilling into Appendix
you could write:
Code: Select all
\appendix
\section*{Appendix}
...
Stefan
Re: thebibliography spilling into Appendix
\Appendix
\begin{center}
\bf{Appendix}
\end{center}
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
Re: thebibliography spilling into Appendix
By the way, do not use \bf. Those two letter font commands are obsolete. Use \textbf{Appendix} or {\bfseries Appendix} instead.
And the usual appendix command of the standard classes is \appendix, written in small letters.
Stefan