页码和页眉

页码和页眉

默认情况下,TeX 会在页面底部打印页码。我添加了自定义页眉,以便页码显示在右上角。

因此,我在两个地方都有页码,一个在页面底部,一个在页眉中。

如何删除页面底部的页码?

答案1

我建议使用该fancyhdr包。它允许您设置页眉和页脚。

\documentclass{article}
\usepackage{lipsum}
\usepackage{fancyhdr}
\pagestyle{fancy}
%%
\lfoot{Left footer}
\cfoot{Center of footer}
\rfoot{Right of footer}
%%
\lhead{Left of header}
\chead{center of header (on page \thepage)}
\rhead{Right of header}
%%
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\begin{document}

\lipsum[1-2]

\end{document}

在此处输入图片描述

答案2

如何删除页面底部的页码?R:只需在后面写入\pagestyle{fancy}

\cfoot{}

这里有一个 MWE:

\documentclass[twoside]{article}

\usepackage[utf8]{inputenc}

\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{txfonts}
\usepackage{mathdots}
\usepackage{lipsum}
\usepackage{bmpsize}
\usepackage[classicReIm]{kpfonts}
\usepackage{scrextend}
\usepackage{graphicx}
\usepackage[affil-it]{authblk}
\usepackage{fancyhdr}
\usepackage{hyperref}
\usepackage{titling}

\setlength\headheight{20pt}

\pagestyle{fancy}
\cfoot{}
\newcommand\authors{\textit{Rui S. Camps}}
\fancyhead[LE,RO]{\textit{\thepage}}
\fancyhead[LO]{\textit{\nouppercase{\leftmark}}}
    \fancyhead[RE]{\authors} % Move this line after \author command
\renewcommand{\headrulewidth}{0.4pt}

% Custom command to set running head for odd and even pages
\newcommand{\oddhead}{\markright{Running Head}}
\pagestyle{fancy}
\begin{document}
    
    \title{Relative Advantage of Latex}
    \date{}
    \author{Rui de S. Camphos\thanks{Univ of Porto: \texttt{[email protected]}}}
    
    \maketitle
    \thispagestyle{empty}
    

    
    \begin{small}
        \textbf{Abstract}
        \\  
        \noindent bla bla.
    \end{small}
    
    \newpage
    
    \section{Introduction}
    
    \textbf{1st paragraph}\\
    \lipsum[1]
    
    \textbf{2nd paragraph}\\
    \lipsum[2]
    \lipsum[2]
    \lipsum[3]
    \lipsum[3]
    
    \newpage
    \lipsum[5]
    \lipsum[6]
    \lipsum[7]
    
\end{document}

相关内容