I have 3/4th of a page left to align 4 images. I am on a page constraint and want to fit them all properly.
\documentclass{article}
\usepackage{graphicx} % Required for inserting images
\title{sample}
\begin{document}
\maketitle
\begin{frame}{}
\begin{figure}[ht]
\begin{minipage}[b]{0.45\linewidth}
\centering
\includegraphics[scale=0.45]{Figures/edaaml1.jpg}
\caption{AMLSim: All transactions in each timestep}
\label{fig:16}
\end{minipage}
\hspace{0.5cm}
\begin{minipage}[b]{0.45\linewidth}
\centering
\includegraphics[scale=0.45]{Figures/edaaml2.jpg}
\caption{AMLSim: SAR transactions in each timestep}
\label{fig:17}
\end{minipage}
\begin{minipage}[b]{0.45\linewidth}
\centering
\includegraphics[scale=0.32]{Figures/edaellip.jpg}
\caption{Elliptic: All transactions in each timestep}
\label{fig:18}
\end{minipage}
\hspace{0.5cm}
\begin{minipage}[b]{0.45\linewidth}
\centering
\includegraphics[scale=0.35]{Figures/edaellip2.jpg}
\caption{Elliptic: Illicit transaction graph in timestep 41}
\label{fig:19}
\end{minipage}
\end{figure}
\end{frame}
\end{document}
This is how it looks so far:
The problem is that the images are too small (trying to be fit in one page) and the captions too congested. The margin spaces can be reduced to accommodate them, but can I only change the margins in this page (I don't want to ruin the alignment in the rest of the document), or is there a grid for images I can appropriately adjust these figures in?



beamerpresentation? – Werner Apr 26 '23 at 03:46frameenvironment is. LaTeX kernel provides a (robust)\framecommand (used for the\frameboxcommand ofpictureenvironment), but noframeenvironment. And for me it is also not clear, what you expect. Do you want to enlarge the images and have them protrude into the left and right page margins? Or do you want to enlarge the page into the bottom margin? – cabohah Apr 26 '23 at 07:50