I'm using this memoir layout on the indicated stock size and with the indicated typeblock size.
How do I modify this, keeping the same stock size and typeblock size, but so as to center the entire printed area — headers, text area, footers, footnotes — on the physical stock?
\documentclass[showtrims]{memoir}
\usepackage{lipsum}
% PAGE LAYOUT
\setstocksize{11in}{8.5in}
\settrimmedsize{55.25pc}{38pc}{*}
\settrims{0in}{0in}
\settypeblocksize{44pc}{28pc}{*}
\setlrmargins{*}{*}{*}
\setulmargins{*}{*}{*}
\checkandfixthelayout
% HEADERS & FOOTERS
\copypagestyle{chapter}{plain}
\makeoddfoot{chapter}{}{\sffamily\thepage}{}
\makeheadrule {headings}{\textwidth}{\normalrulethickness}
\newcommand{\mainheads}{%
\makeevenhead{headings}{\bfseries\sffamily\thepage}{\bfseries\sffamily\rightmark}{}%
}
\mainheads
\begin{document}
\chapter{Chapter one}
\section{The first section}
\lipsum[1-7]%
\footnote{Be sure to note this footnote!}
\lipsum[8-10]%
\footnote{\lipsum[20]}
\lipsum[11-12]
\end{document}
Presumably I will add the onesided option to memoir, but which dimensions do I have to change how?
![centred page[1]](../../images/c2898220d63f9ad1762cf60a4bbe6efe.webp)
\setpageccwhich centres the printed area on the stock. No calculations required. – cfr Jul 08 '18 at 20:49