I would like to represent each figure with a letter caption. For the first row, all figures should have a caption of Figure 1(a), ... Figure 1(d), and Figure 2(a), ... Figure 2(d) for the second row.
Is this possible?
\documentclass[a1paper,fontscale=0.43]{baposter} % Adjust the font scale/size here
\usepackage{graphicx} % Required for including images
\graphicspath{{figures/}} % Directory in which figures are stored
\usepackage[font=small,labelfont=bf]{caption} % Required for specifying captions to tables and figures
\usepackage{multicol} % Required for multiple columns
\setlength{\columnsep}{1.5em} % Slightly increase the space between columns
\setlength{\columnseprule}{0mm} % No horizontal rule between columns
\begin{document}
\begin{poster}
\begin{center}
\begin{minipage}{0.24\linewidth}
\includegraphics[width=\linewidth]{mancrop1.jpg}
\captionof{figure}{}
\end{minipage}
\hfill
\begin{minipage}{0.24\linewidth}
\includegraphics[width=\linewidth]{seg1im1.png}
\captionof{figure}{}
\end{minipage}
\hfill
\begin{minipage}{0.24\linewidth}
\includegraphics[width=\linewidth]{seg1im3.png}
\captionof{figure}{}
\end{minipage}
\hfill
\begin{minipage}{0.24\linewidth}
\includegraphics[width=\linewidth]{seg1im2.png}
\captionof{figure}{}
\end{minipage}
\end{center}
\begin{center}
\begin{minipage}{0.24\linewidth}
\includegraphics[width=\linewidth]{mancrop2.jpg}
\captionof{figure}{}
\end{minipage}
\hfill
\begin{minipage}{0.24\linewidth}
\includegraphics[width=\linewidth]{seg2im1.png}
\captionof{figure}{}
\end{minipage}
\hfill
\hfill
\begin{minipage}{0.24\linewidth}
\includegraphics[width=\linewidth]{seg2im3.png}
\captionof{figure}{}
\end{minipage}
\hfill
\begin{minipage}{0.24\linewidth}
\includegraphics[width=\linewidth]{seg2im2.png}
\captionof{figure}{}
\end{minipage}
\end{center}
\begin{center}
Figures caption.
\end{center}
\end{poster}
\end{document}
This outputs:
Thank you.


Figure 1(a). Do you also want to have a common caption for all subfigures likeFigure 1 Caption text? – leandriis Jul 26 '19 at 19:12