如何在右侧页脚设置页码

如何在右侧页脚设置页码

我想知道如何在右侧页脚(即整个文档页面的右下角)甚至章节标题页上设置文档的页码。请帮我解决。

答案1

这应该可以帮助你入门。

\documentclass{article}

\usepackage{fancyhdr}
\usepackage{lipsum}

\title{Some document}
\author{Shivam Dhoot}

% Turn on the style
\pagestyle{fancy}
% Clear the header and footer
\fancyhead{}
\fancyfoot{}
% Set the right side of the footer to be the page number
\fancyfoot[R]{\thepage}

\begin{document}
\maketitle
% Input some blind text
\lipsum
\end{document}

由于您明确提到希望在章节标题页的页脚上也显示页码,因此您需要重新定义plain用于这些页面的样式。从这个答案在这里我得到了这个代码,它似乎正是你想要的。

\documentclass{report} % to have chapters

\usepackage{fancyhdr} % to change header and footers
\usepackage{blindtext} % to quickly get a full document

\title{Some document}
\author{Shivam Dhoot}

\pagestyle{fancy} % Turn on the style
\fancyhf{} % Start with clearing everything in the header and footer
% Set the right side of the footer to be the page number
\fancyfoot[R]{\thepage}

% Redefine plain style, which is used for titlepage and chapter beginnings
% From https://tex.stackexchange.com/a/30230/828
\fancypagestyle{plain}{%
    \renewcommand{\headrulewidth}{0pt}%
    \fancyhf{}%
    \fancyfoot[R]{\thepage}%
}

\begin{document}
\maketitle

% Input some blind text
\blinddocument
\end{document}

让我们知道这是否有帮助或者您是否需要更多信息。

答案2

我使用\usepackage{fancyhdr}和您写的命令。但是,页面顶部出现了一条水平线。

软件包如下:

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{textcomp}
\usepackage[portuguese]{babel}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{subeqnarray}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage{booktabs}
\usepackage{xcolor}
\usepackage{enumerate}
\usepackage{enumitem}
\usepackage{lscape}
\usepackage{lipsum}
%=================== pagina
\usepackage{fancyhdr}
\usepackage{lipsum}
% Turn on the style
\pagestyle{fancy}
% Clear the header and footer
\fancyhead{}
\fancyfoot{}
% Set the right side of the footer to be the page number
\fancyfoot[R]{\thepage}

结果是这样的:

在此处输入图片描述

我怎样才能删除顶部的这条水平线?

谢谢你,埃里克。

相关内容