Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I'm writing an essay in \documentclass[a4paper,11pt,twocolumn]{book}. The entire work is in twocolumn but I need the appendix to be onecolumn. I tried using \onecolumn but is adds 2 blank pages and the titles within the appendix appear on the bottom of the page?

How can I fix this?

\documentclass[a4paper,11pt,twocolumn]{book}
\begin{document}
\maketitle
\tableofcontents
\input{theory}

\onecolumn
\appendix
\input{information}

\nocite{*}
\bibliographystyle{unsrt}
\bibliography{bib}

\end{document}
share|improve this question
Welcome to tex.sx, you can indent by four spaces or highlight and use the {} button for code sections and use a backtick for inline code. – David Carlisle Mar 4 at 19:59
2  
Clearly titles should not be at the bottom of the page so there is an error in your markup, but we can not see it or run the posted example. Please try to edit the example to show the problem, in a way that can be run on other sites, perhaps remove \bibliography{bib} and \input{theopry} and replace \input{information} with the minimum amount of text that shows the problem, presumably that file has some \chapter and \section commands? – David Carlisle Mar 4 at 20:04

1 Answer

Try putting the command \onecolumn inside the file information.tex. Don't forget to save the amended file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.