如何让页眉和页脚延伸到边距(使用 Memoir 类)?

如何让页眉和页脚延伸到边距(使用 Memoir 类)?

与问题类似这个问题我正在编写一个使用小文本块的文档,其中的边距包含一些注释。我没有直接更改\textwidth,只是通过几何包更改了边距和marginparwidth。由于文本块较窄,标题也按相同比例变窄。

那么,我该如何让页眉延伸到页边距\marginparsep+ \marginparwidth?另外...每章第一页的页码也存在同样的问题,它们没有居中,而我希望它们居中。

我正在使用回忆录课程。

我已经通过 Overleaf 使用 LaTeX 大约 6 个月了,所以我还是新手。如果这个问题很愚蠢,请见谅。

这是我正在做的事情的一个例子:

\documentclass[letterpaper, 12pt]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[spanish, mexico]{babel}
\usepackage{multicol}
\usepackage{marginnote}
\usepackage{lettrine}
\usepackage{enumitem}
\usepackage{blindtext}

\usepackage[
    letterpaper,
    marginparwidth=1.5in,
    right=2in,
    left=1in,
    top=1in,
    bottom=1in
]{geometry}

\usepackage{titlesec}

\renewcommand{\thechapter}{\Roman{chapter}}

\renewcommand{\thesection}{\arabic{section}}
\titleformat{\section}
{\normalfont\Large\bfseries}{Artículo~\thesection}{1em}{}

\counterwithout*{footnote}{chapter}
\counterwithout*{section}{chapter}

\usepackage{GoudyIn}
\renewcommand{\LettrineFontHook}{\GoudyInfamily{}}
{\LettrineTextFont{\itshape}
\setcounter{DefaultLines}{5}
\setlength{\DefaultNindent}{0pt}
\setlength{\DefaultFindent}{1pt}}

\newlist{apartados}{enumerate}{3}
    \setlist[apartados, 1]
    {label=\textbf{\Alph{apartadosi}.}
    }
    \setlist[apartados, 2]
    {label=\textbf{\Roman{apartadosii}.}
    }

\newlist{fracciones}{enumerate}{3}
    \setlist[fracciones, 1]
    {label=\textbf{\Roman{apartadosi}.}
    }
    
\title{TITLE}
\author{Me}
\date{September 2022}

\begin{document}

\frontmatter

\maketitle

\mainmatter

\part*{PART ONE}

\chapter[A not so long Chapter Title]{A very very very very long Chapter Title
}

\section{}

\marginnote{
    \emph{\footnotesize In this page you can see how the page number at the bottom is not centered}
    }
\noindent\blindtext \footnote{
    \blindtext
    }

\blindtext

\marginnote{
    \emph{\footnotesize In this page you can see how the header (and the page number specifically) is not the full width, including the margin width}
    }
\blindtext

\end{document}

相关内容