[Tex/LaTex] Centering the frontpage using memoir

double-sidedhorizontal alignmentmarginsmemoirtitles

I'm using memoir (two-side layout). I have the problem that my front page is centered with respect to the margins, which are not equal in left and right side. \begin{center} will not solve this, since it will center the content with respect to the margins. How to fix this?

Best Answer

As suggested from math.au.dk/videnudveksling/latex/bog/:

\calccentering{\unitlength}                         % Calculate center length and stores in unitlength
\begin{adjustwidth*}{\unitlength}{-\unitlength}     % Adjust center
    \begin{adjustwidth}{-1cm}{-1cm}                 % Extra lage front page
        Front page material
    \end{adjustwidth}
\end{adjustwidth*}
Related Question