我正在生成一个 LaTeX 文档,其中四周必须有 1 英寸的边距。
但是,这似乎会使页码消失(即,它们出现在页脚之外)
我尝试了几种方法来解决这个问题,但页码仍然不见了。这些解决方案包括:
(1)放置
includefoot
在“几何”包的规范中
(2)使用命令
\setlength{\footskip}{20pt}
减少脚步跳跃。
下面是我的代码
\documentclass[12pt]{article}
\usepackage[left=1in,right=1in, top=1in,bottom=1in, includefoot]{geometry}
\usepackage{fancyhdr}
\usepackage{fancyhdr,etoolbox}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[OL]{\ifnumodd{\value{page}}{Lorem ipsum}{Lorem ipsum}
\setlength{\footskip}{20pt}
\usepackage{lipsum}
\begin{document}
\lipsum
\end{document}
关于如何解决该问题有什么想法吗?
答案1
\fancyhf{}
清除所有页眉和页脚字段。要(再次)在页脚中打印页码,您可以使用,例如\fancyfoot[C]{\thepage}
。