页眉和页脚均已更改

页眉和页脚均已更改

我需要设置一个奇怪的边距left=3.14in。有什么好办法可以让页脚忽略这个问题,而改为使用左右边距.75in?MWE:

\documentclass[10pt]{article} % investigate tbu
\usepackage{geometry} % package link.  tbu explanation.
\usepackage[table]{xcolor} % allows table row highlighting
\usepackage{tabularx} % package link.  tbu explanation.
\usepackage[explicit]{titlesec} % package link.  tbu explanation.
\usepackage[utf8]{inputenc} % package link. tbu explanation.
\usepackage{enumitem}% package link. for lists.
\usepackage{fancyhdr}
\usepackage{comment}
\usepackage{framed}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage{xhfill} % tbu
\geometry{top=1.25in, left=3.14in, right=.75in, bottom=.81in}
% subsection format setup
\titleformat{name=\subsection,numberless}[runin]{\bfseries\large\color{black}}{}{0em}{\llap{\smash{\begin{tabularx}{2.25in}[t]{@{}l@{\hskip0.4em}>{\raggedright}X@{\hskip\marginparsep}} & #1\end{tabularx}}}}[\leavevmode\hspace*{\dimexpr-\fontdimen2\font-\fontdimen3\font}] % MM deleted \thesubsection to remove numbering
\setlength\parindent{0pt} % no indent for entire file
\pagestyle{fancy}
\lfoot{\small The left footer}
\rfoot{\small The right footer}

\begin{document}
\section{First Section}
\subsection{First Subsection}
\lipsum[1-10]

\end{document}

谢谢你!

答案1

页眉和页脚均已更改

从 3.0 版开始,可以fancyhdr通过新命令轻松更改页眉和页脚行的边距\fancyhfoffset

\fancyhfoffset[l]{\dimexpr3.14in-.75in\relax}

第二页:

结果

仅更改页脚边距

将页脚线向左移动可以使用负数\kern

\lfoot{\mbox{\kern\dimexpr-3.14in+.75in\relax\small The left footer}}
\cfoot{\mbox{\kern\dimexpr-3.14in+.75in\relax \thepage}}
\rfoot{\small The right footer}

\small也包括页码吗?)

结果

相关内容