So I am using the report class, and every time I try to create a new \chapter it creates it on a new blank page with just the title. I have tried using \usepackage{etoolbox} but I keep getting Latex Error: Float(s) lost and will not compile. I want to start my chapter on the same page, but I can not figure out how.
Link to full .tex file: http://pastebin.com/Tf55ZmAv
\documentclass[12pt, letterpaper, twocolumn]{report}
\usepackage{fullpage}
\usepackage[pdftex,hypertexnames=false,linktocpage=true]{hyperref}
\hypersetup{colorlinks=true,linkcolor=blue}
\usepackage{etoolbox}
\begin{document}
\title{TITLE}
\author{RPBruiser}
\date{April 13, 2015}
\maketitle
\begin{abstract}
Stuff is here.
\end{abstract}
\renewcommand{\chaptername}{}
\chapter{Introduction}
Context of Chapter 1
\chapter{Methods}
\section{Housing}
Information 123525
-------------HERE IS WHERE I WANT TO BE ON SAME PAGE-------------
\begingroup
\renewcommand{\clearpage}{}
\chapter{results}
\endgroup
\end{document}
\documentclass{report} \begin{document} \chapter{Zzzzzzzzz} \section{This} xxxx \section{That} yyyyyyy \end{document}– David Carlisle Apr 22 '15 at 16:02\chapteralways starts on a new page, but does not force a page break after the title. – David Carlisle Apr 22 '15 at 16:03\chapter{...}commands in one file, followed by\include{filename}. if that's what you're doing, you need to place the\chapter{...}command within the file to be\included, since\includeby definition starts a new page, as does\chapteras already noted by david carlisle.. – barbara beeton Apr 22 '15 at 16:27\chapter{Methods}and\chapter{Results}, however, these are on two separate pages, a page break before the title of Results chapter. This something I do not want. I want the end of Methods and beginning of Results o be on one page – RPBruiser Apr 23 '15 at 02:24twocolumnand the comments on the original question mention the solution there failing intwocolumnmode. But the question linked from there does contain a solution. Perhaps the OP could say whether that question seems to be a duplicate? – cfr Apr 23 '15 at 20:48twocolumn. – erik Apr 23 '15 at 21:27