我是使用 的新手fancyhdr
。当我使用fancyhdr
它时,我的 pdf 第一页上会显示一个网格。我想知道如何摆脱它?
我正在尝试创建一个四边边距为 1 英寸的页面,并在右上角显示页码。这是我使用的最小代码。
\documentclass[12pt]{article}
% To set page numbers at upper right corner
\usepackage{fancyhdr}
\renewcommand{\headrulewidth}{0pt}
\pagestyle{fancy}
\fancyhf{}
\fancyhfoffset[R]{1cm}
\fancyhead[R]{\thepage}
% To add 1 inch margin
\oddsidemargin=-1in
\topmargin=-1in
\headheight=0pt
\headsep=20pt
\parindent=0pt
\setlength\topmargin{0pt}
\addtolength\topmargin{-\headheight}
\addtolength\topmargin{-\headsep}
\setlength\oddsidemargin{0pt}
\setlength\textwidth{\paperwidth}
\addtolength\textwidth{-2in}
\setlength\textheight{\paperheight}
\addtolength\textheight{-2in}
\usepackage{layout}
\begin{document}
\layout % 1 inch margin
\raggedright % left justify
\title{My Amazing Paper}
\maketitle
\begin{abstract}
Sample Text
\end{abstract}
\section{Introduction}
Sample Text
\end{document}
答案1
删除 \layout。另外,最好使用 geometry 包设置边距。