如何在调用无页眉命令时调整页码的位置

如何在调用无页眉命令时调整页码的位置

考虑以下代码:

\documentclass{book}
\usepackage{fancyhdr}
\usepackage{lipsum}
\usepackage{pgfpages}
\pgfpagesuselayout{2 on 1}

% Algorithm to put page number at bottom of page
\fancyhf{}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
% definitions for \pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\emph{\large \thepage}}
% Same for \pagestyle{plain} - used for first chapter pages.
\fancypagestyle{plain}{
  \fancyhf{}
  \fancyhead[LE,RO]{\emph{\large \thepage}}
}
\fancypagestyle{nohead}{
  \fancyhf{}
  \fancyfoot[C]{\emph{\large \thepage}}
}
% % % % % % % % % % % % % % % % % % % % % % % % % 
\begin{document}
\LARGE
\thispagestyle{nohead}
\lipsum[1-3]
\end{document}

带输出

在此处输入图片描述

问题:如何调整受该命令影响的页码位置\thispagestyle{nohead}?在本例中(第 1 页),我想增加最后一行和页码之间的垂直间距。最好采用全局解决方案。

答案1

两种可能的解决方案:

  1. 增加\footskip,例如\setlength{\footskip}{1cm}
  2. 使用类似\fancyfoot[C]{\raisebox{-1cm}{\emph{\large \thepage}}}

相关内容