I am in the process of writing a publication of my master's thesis. One example of disclosure is a literature review. To save my time and work, I use bibtex to create this chapter. The thing I want to change now is that latex is starting a new page for the bibliography, which represents a huge overhead in a four-page document.
I think the relevant parts from my document:
\documentclass [ fontsize = 12pt,
paper = a4,
paper = portrait,
twoside = false,
headsepline,
twocolumn = false,
numbers=noenddot
]{scrartcl}
\bibliographystyle{unsrt}
\begin{document}
%
\include{text}
\nocite{*}
\singlespacing
\bibliography{literature}
%
\end{document}
skorgon
source
share