hoping someone can assist?
I've referred to the link below and am struggling with trying to work out how to get a landscape image to align in the center of a book as I have some large images which I need to spread across to pages. I'm almost there but if you see my MWE you see that the odd page won't go to the spine so it joins up with the other half of the image - just creates a white space - But the white space should be on the left margin of the odd page, not the right margin
**EDIT QUESTION **I took @barbarabeeton suggestion to use the hvfoat package - I got supa excited but then discovered I cant auto-scale down my images to 2x Page size limitation and many of my images are larger in px ratios exceeding the page size requirement - so any suggestions on how I could auto-scale the images either using the hvfloat package or before passing the image to the hvfloat so that my oversize images don't cause hbox overfill or create blank pages before and after the split?
Here is my workaround for the edit on the code above - SO FAR!
However, as you can see the hvfloat puts an ugly page numbering and an unwanted caption. The manual says "either with page number and caption or not....." but I can't see how to do that? - If I remove the caption code it fails - hmmmm
\documentclass[a4paper,twoside,]{book}
\usepackage[top=25.4mm,bottom=25.4mm,left=25.4mm,right=25.4mm]{geometry}
\usepackage{graphicx}
\usepackage{hvfloat}
\usepackage[export]{adjustbox}
\makeatletter
\def\maxwidth{%
\ifdim\Gin@nat@width>\paperwidth
\linewidth
\else
\Gin@nat@width
\fi
}
\makeatother
\begin{document}
\hvFloat[doublePAGE,sameHeight,capPos=right,bindCorr=0mm]%
{figure}%
{\includegraphics[doublefullPage,width=2\maxwidth]{image}}%
[A doublepage image with a caption below the right part.]%
{A caption for a double-sided image that will be placed below the right-hand
part of the illustration. The illustration begins on the left edge of the paper.
No further text is placed on the pages. A short form is used for the LOF.
The parameter is \texttt{doublePAGE}}%
{fig:doublePAGE0}
\end{document}
How to include a picture over two pages, left part on left side, right on right (for books)?
\documentclass[a4paper,twoside,]{book}
\usepackage[margin=0in]{geometry}
\usepackage{graphicx}
\usepackage{adjustbox}
\usepackage{afterpage}
\usepackage{placeins}
\usepackage{xcolor}
\makeatletter
\newcommand{\twopagepicture}[4]{%
\checkoddpage
\ifoddpage
\expandafter@firstofone
\else
\expandafter\afterpage
\fi
{\afterpage{%
\if #1t%
\if #2p%
\thispagestyle{empty}%
\afterpage{\thispagestyle{empty}}%
\fi
\fi
\begin{figure}[#1]
\if #2p%
\if #1t%
\vspace{-\dimexpr1in+\voffset+\topmargin+\headheight+\headsep\relax}%
\fi
\fi
\makebox[\linewidth][l]{%
\if #2p\relax
\let\mywidth\linewidth
\let\myheight\textheight
\hskip-\dimexpr1in+\hoffset+\evensidemargin\relax
\else
\let\mywidth\linewidth
\let\myheight\textheight
\fi
\adjustbox{trim=0 0 {.50\width} 0,clip}{\includegraphics[width=2\mywidth,height=1\myheight,keepaspectratio=true]{#3}}}%
\if #2p%
\if #1b%
\vspace*{-\dimexpr\paperheight-\textheight-1in-\voffset-\topmargin-\headheight-\headsep\relax}%
\fi
\fi
\end{figure}%
\begin{figure}[#1]
\makebox[\linewidth][l]{%
\if #2p%
\let\mywidth\linewidth
\hskip-\dimexpr1in+\hoffset+\oddsidemargin\relax
\else
\let\mywidth\linewidth
\let\myheight\textheight
\fi
\adjustbox{trim={.50\width} 0 0 0,clip}{\includegraphics[width=2\mywidth,height=1\myheight,keepaspectratio=true]{#3}}}%
\end{figure}%
}}%
}
\makeatother
\begin{document}
\twopagepicture{t}{l}{image}{}
\end{document}

a4paper, I modified the original code to use KOMA. If the first line in the .tex now reads e.g., as\documentclass[twoside, BCOR = 1.0cm]{scrbook}, there is less space till the spine. Yet if the physical document is bound, it does not make sense to set e.g.,BCOR = 1.9cmwhich would close the gap while displaying two pages in a viewer simultaneously. – Buttonwood Jul 12 '21 at 12:22hvfloatis intended for this purpose. I've added an answer to the cited question with some information on the package. – barbara beeton Jul 12 '21 at 16:36hvfloatand you need a method to resize your graphics. It doesn't materially change the question. – barbara beeton Jul 13 '21 at 03:50doubleFULLPAGEas option forhvFloatand for\includegraphics, too. In your example you useddoublePAGEwhich has the default left margin. – user187802 Jul 16 '21 at 06:41