I am using the elsarticle class and the standard template provided by them (see below). My problem is that all the figures are being put on the last page of my paper all tables are not being shrinked. Is there a way I could make LaTeX put the figures anywhere else except the last page and also reduce the size of the tables (something like scale=0.3*linewidth)?
\documentclass[preprint,5p,times]{elsarticle}
\usepackage{amssymb}
\usepackage{times}
\usepackage{graphicx}
\usepackage{verbatim}
\usepackage{epsfig}
\usepackage{multirow}
\usepackage{array}
\journal{x}
\begin{document}
\begin{frontmatter}
\title{x}
\author{x}
\ead{X}
\author{x}
\ead{x}
\address{x}
\begin{abstract}
The best abstract ever!!!\end{abstract}
\begin{keyword}
a;
b;
c;
\end{keyword}
\end{frontmatter}
\section{Introduction}
\label{Sec-Introduction}

\documentclass{...}and ending with\end{document}. – Martin Schröder Feb 24 at 20:30scale=0.3*\linewidth. If so, expect to get an error: scale is a number between 0 and 1, whereas \linewidth is a length (number + unit). – Jubobs Feb 24 at 21:05