I need to format my book to 6x9 for printing on KDP. In my mwe, when I include graphicx the page shrinks as shown below. The pages layout is fine when I remove the line \usepackages{graphicx} or the \usepackage{geometry} line.
How do I format my book for 6x9 using memoir and graphicx?
\documentclass[12pt]{memoir}
\usepackage[paperwidth=6in, paperheight=9in, bindingoffset=0.75in]{geometry}
\usepackage{graphicx}
\usepackage{lipsum}
\begin{document}
\lipsum[1-3]
\end{document}


\usepackage[paperwidth=6in, paperheight=9in]{geometry}withoutbindingoffset=0.75indid the trick.bindingoffset=0.75inpushed the text too far to the outside of the page. – buttonsrtoys Mar 16 '23 at 05:10