回憶錄和調整寬度環境跨分頁符號的頁碼行為

回憶錄和調整寬度環境跨分頁符號的頁碼行為

當我使用回憶錄並透過調整寬度環境來減少分頁符號的邊距寬度時,頁碼會被推到一邊。這是怎麼回事?

頁碼太靠右

\documentclass{memoir}
\newlength{\extrawidth}
\setlength{\extrawidth}{50mm}

\newlength{\textwidthwide}
\setlength{\textwidthwide}{\textwidth}
\addtolength{\textwidthwide}{\extrawidth}

\newenvironment{widetext}
{\begin{adjustwidth}{-.5\extrawidth}{-.5\extrawidth}%
\setlength{\textwidth}{\textwidthwide}}%
{\end{adjustwidth}}

\usepackage{blindtext}

\begin{document}
\Blindtext\Blindtext
\begin{widetext}
  \Blindtext\Blindtext
\end{widetext}
\end{document}

答案1

您已重置\textwidth並重新排列了標題。 adjustmentwidth 的目的是局部改變邊距沒有更改頁面設定。所以只需刪除

\setlength{\textwidth}{\textwidthwide}

相關內容