I am using the subcaption package to place figures side-by-side, and I need to have labels in the form of letters to the top left of the figures.
I.e. I am trying to achieve
A [Figure] B [Figure]
[Figure] [Figure]
[Figure] [Figure]
[Figure] [Figure]
[Figure] [Figure]
where a single image is denoted by:
[Figure]
[Figure]
[Figure]
[Figure]
[Figure]
I am happy for my figures to be aligned to the top of the float.
I have tried:
\documentclass[12pt,a4paper,twoside,table]{report}
\usepackage[font=small]{caption}
\usepackage[labelformat = empty,position=top]{subcaption}
\begin{document}
\begin{figure}[tb]
\centering
\begin{subfigure}[t]{0.05\textwidth}
\textbf{A}
\end{subfigure}
\begin{subfigure}[t]{0.45\textwidth}
\includegraphics[width=\textwidth]{figures/figure1.pdf}
\end{subfigure}
\begin{subfigure}[t]{0.05\textwidth}
\textbf{B}
\end{subfigure}
\begin{subfigure}[t]{0.45\textwidth}
\includegraphics[width=\textwidth]{figures/figure2.pdf}
\end{subfigure}
\caption[This is for my LOF]{Yay I am usually a huge figure caption}
\label{Iamalabel}
\end{figure}
\end{document}
How do I get the labels to be
(1) Letters A, B ...
(2) Actually properly positioned as above?

