For some unknown reasons all my figures have moved after Appendices section. I cannot recall any changes which would force the complete set of figures to behave like this. As well as I have not added any new \usepackage commands since ages. However, I have included the MWE for you to view potential problems.
Code: Select all
\documentclass[a4paper,11pt,oneside,english]{article}
\usepackage[margin=2.54cm,top=2.54cm]{geometry}
\usepackage{hyperref}
\usepackage{threeparttable}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{verbatim}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage[T1]{fontenc}
\usepackage{txfonts}
\usepackage{setspace}
\usepackage{appendix}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage{blindtext}
\usepackage{babel}
\usepackage[latin1]{inputenc}
\author{\ldots}
\date{\ldots}
\title{\ldots}
\newpage
\begin{document}
\doublespacing
\maketitle
\include{Abstract/abstract}
\begin{abstract}
\ldots
\end{abstract}
\newpage
\tableofcontents
\newpage
\listoffigures
\listoftables
\newpage
\section{Introduction}
\section{other sections in my paper}
I have included one graph as a sample.
\begin{figure}[hp]
\caption{The Lorenz Curve}\label{gini}
\centering
\includegraphics[width=65mm, height=65mm]{GiniCoefficient.jpg}
\end{figure}
\newpage
\appendix
\appendixpage
\addappheadtotoc
\end{subappendices}
\end{document}
\backmatter
Any help would be appreciated...
Thanks