Code: Select all
\documentclass{report}
\usepackage{graphicx}
\usepackage[labelfont=bf, font={bf,small}, aboveskip=2pt, singlelinecheck=false]{caption}
\usepackage[top = 1.25in, bottom = 1.25in, left = 1.25in, right = 1.25in]{geometry}
\usepackage{showframe}
\begin{document}
\chapter{Chapter 1}
\section{Section 1}
\subsection{Subsection 1}
Text goes here
%add spaces to finish page eg:
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\newcommand{\fig}[2]
{\begin{figure}[!ht]
\setlength\fboxsep{0pt} %offset from edge of picture
\setlength\fboxrule{0.75pt} %border size
\fbox{\includegraphics[width=5.99in,height=3.97in]{#1}}
\caption{#2}
\end{figure}}
\fig{fig1}{Figure 1}
\fig{fig2}{Figure 2}
\fig{fig3}{Figure 3}
\end{document}
Thanks.