改变脚注行的长度?

改变脚注行的长度?

我想更改章节中不同页面的脚注行长度。例如,我希望第 1 页的脚注行长度为“4 英寸”,第 2 页的脚注行长度为“6 英寸”。我对第 1 页使用了以下代码:

\makeatletter
\def\footnoterule{
  \hrule \@width 0.4 in \kern 3\p@} 
\makeatother

你能帮助我吗?

答案1

像这样吗?

\documentclass{article}
\makeatletter
\renewcommand\footnoterule{\kern-3\p@\hrule\@width\ifodd\value{page}4in\else6in\fi\kern2.6\p@}
\makeatother 
\begin{document}
text\footnote{footnote}
\newpage
text\footnote{footnote}
\end{document}

相关内容