I am attempting to place three images into a subplot, with one centrally placed on the page above the other two. When i run the attached code it places everything left justified. I have checked by using
\fbox
whether the images have empty white space but i cannot see any. The \qquad
command needs to be used so many times to separate the two horizontal images as they were being placed overlapping.Code: Select all
\usepackage{graphics}
\usepackage{makeidx}
\usepackage{nomencl}
\usepackage{graphicx}
\usepackage{url}
\usepackage{notoccite}
\usepackage{subcaption}
\begin{figure}
\begin{subfigure}[b]{0.5\textwidth}
\centering
\includegraphics[height=3in]{C:/Users/NuclearPhysics/Documents/ThesisDiagrams/244_allcones_comp3.png}
\caption{}
\label{fig:244keV_image_Aldermaston}
\end{subfigure}
\begin{subfigure}[b]{0.3\textwidth}
\centering
\includegraphics[height=2.5in]{C:/Users/NuclearPhysics/Documents/ThesisDiagrams/244_allcones_comp3_fitX.png}
\caption{}
\label{fig:244keV_image_Xfit_Aldermaston}
\end{subfigure}%
\qquad \qquad \qquad \qquad \qquad
\begin{subfigure}[b]{0.3\textwidth}
\centering
\includegraphics[height=2.5in]{C:/Users/NuclearPhysics/Documents/ThesisDiagrams/244_allcones_comp3_fitY.png}
\caption{}
\label{fig:244keV_image_Yfit_Aldermaston}
\end{subfigure}
\caption{The image produced by gating on 244keV is shown in (a), the background is much reduced compared to \ref{fig:122keV_image_Aldermaston} as the scattered gamma rays are becoming more forward focused as shown in the Klien Nishina distribution. The FWHM of the image is ~19mm. (b) and (c) are cross sections through the X and Y axis respectively, showing the Laplacian fit to the data used to create the image.}
\end{figure}
\centering
above the first sub-figure but this right justifies the images, removing it left justifies them. The horizontal images are slightly wider than the text column, so using \qquad
so many times has moved the right hand image almost to the page edge as shown in the attached image.
Is there a way of centering the top image and then placing the two horizontal images such that they are aligned centrally as well?