I have using multicol package and not able to fit the figure float in the same Page. My MWE is:
\documentclass{book}
\usepackage{graphics,lipsum,multicol}
\makeatletter
\setlength{\columnseprule}{1pt}
\newenvironment{Figure}
{\begin{figure*}[b]\par\medskip\noindent\minipage{\textwidth}}
{\endminipage\par\end{figure*}\medskip}
\makeatother
\begin{document}
\chapter{Chapter Title Here}
\begin{multicols}{2}
\lipsum[1-1]
\begin{Figure}
\centering
{\includegraphics{16627ans_171}}
\end{Figure}
and...
\end{multicols}
\end{document}
I'm expecting the output as per below:


floatpackage and still not got the output. Any ideas? – Balaji Feb 16 '15 at 10:44\usepackage{float};-) – Feb 16 '15 at 11:11