I'm trying to get to the bottom of how to position and center things.
Here I've placed two very large PDFs side-by-side. I scaled them down to the current size and tried to center them:
\documentclass{article}
\usepackage[margin=1in,showframe]{geometry}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\centering
\begin{figure}
%
\centering
\begin{minipage}[c][1\totalheight][t]{0.45\textwidth}%
\begin{center}
{\includegraphics[scale=0.085]{diagrams/pdf/square.pdf}}
\end{center}
\caption{I sit hard up against the left margin}
\end{minipage}\hfill{}%
%
\begin{minipage}[c][1\totalheight][t]{0.45\textwidth}%
\begin{center}
{\includegraphics[scale=0.085]{diagrams/pdf/square.pdf}}
\end{center}
\caption{I hang over the edge of the right margin}
\end{minipage}\hfill{}%
%
\end{figure}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}
It kind of works, but it only hangs over the right margin, so it's not truly centered. If I scale them down even further, there's a point where it's no longer a problem, but say it's impractical to make them any smaller than 0.085%, and you just want it to look more like this:
Notice how the page is perfectly symmetrical, with respect to the positions of the two figures and the excess is distributed evenly between the margins?
How can I achieve this? I thought my use of minipage would sort this out, but I guess not.



\hspacecommand. You can pass negative lengths to it. So if you are overlapping the right margin by let's say 2cm, you could put a\hspace{-1cm}before including the left image (or the minipage if you're using one). Let's hope there exists a better solution to this though... – Raven Aug 10 '19 at 16:07