I'm using two column environment with dblfloatfix package. But my figures are moving to the next page. How to exactly fix it at the top or bottom of the page. Beside I'm using {figure*} environment. I have read that twocolumn environment can not fix this problem. Is it so?What should I do. I need to wrire down paper in two column environment.
`\documentclass[twocolumn, 11pt]{article}`
\usepackage{dblfloatfix}
\usepackage{caption, subcaption}
\usepackage{graphicx}
\usepackage{grffile}
\usepackage{fancyhdr}
\pagestyle{fancy}
\rhead{\thepage}
%\usepackage{float}
\usepackage{amsmath}
\begin{figure*}[!tbp]
\includegraphics[width=0.49\textwidth]{1000.PNG}
%\hspace{0.0005\textwidth}
\includegraphics[width=0.49\textwidth]{10.PNG}
%\\[.5\baselineskip]
\smallskip
\includegraphics[width=0.49\textwidth]{500.PNG}
%\hspace{0.0005\linewidth}
\includegraphics[width=0.49\textwidth]{0.PNG}
\caption{Figures}
\end{figure*}`


figure*environment at a position in the code where the page has already started: by default it goes to the top of the following page. You may try loading thestfloatspackage: it allows for the optional[t]or[b]ìn two column mode. Or you insert your environment previously in the code. – Bernard Jun 12 '19 at 09:30dblfloatfixandstfloat. With the latter, it works fine. – Bernard Jun 12 '19 at 10:25