我目前正在写一篇研究论文。不幸的是,我遇到了以下问题。
1.我在自定义每页的页脚和页眉时遇到了问题。第一页必须有不同的页眉和页脚,这就是为什么我使用以下代码:
\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage[left=1in,right=1in,top=1in,bottom=1in]{geometry}
\usepackage{tikz-cd}
\DeclareMathOperator{\Frob}{Frob}
\usepackage{footnote}
\usepackage{footmisc}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\usepackage{fancyhdr}
\pagestyle{empty}
\fancyhf{}
\fancyfoot{\thepage}
\lhead{\small{\textbf{Foot Note for First Page Only}}}
\lfoot{
Copyright \copyright}
\begin{document}
\date{}
\nocite{*}
\title{Title}
\maketitle
\thispagestyle{fancy}
\end{document}
问题是我无法调整页脚和页眉的字体大小。它太大了。
2.我需要为其余页面应用不同的页脚和页眉。当我使用时\pagestyle{fancy}
,整个文档中只会添加第一页的页脚和页眉。我只需要在偶数页和奇数页(不包括第一页)的中心添加页眉。
答案1
您可以使用\pagestyle{fancy}
定义第一页,然后对整个文档使用个性化样式。您可以使用 创建此个性化样式,并\fancypagestyle{documentstyle}
使用指令在第二页中快速使用此样式\pagestyle{documentstyle}
。以下代码应该可以解决您的问题:
\documentclass[11pt, a4paper, twoside]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\usepackage{lipsum}
\usepackage{parskip}
\usepackage[left=1in,right=1in,top=1in,bottom=1in]{geometry}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\small{\textbf{Journal Nº 1234 \copyright}}}
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0pt} % Default value: 0.4pt
\fancypagestyle{documentstyle}{
\fancyhf{} % clear all header and footer fields
\fancyhead[CO]{Title of the article}
\fancyhead[CE]{Last name of the author}
\fancyfoot[C]{\thepage}
}
\begin{document}
\section{First page}
\lipsum[1-5]
\newpage \pagestyle{documentstyle}
\section{Second page}
\lipsum[1-5]
\newpage
\section{Third page}
\lipsum[1-5]
\newpage
\section{Fourth page}
\lipsum[1-5]
\newpage
\section{Fifth page}
\lipsum[1-5]
\newpage
\section{Sixth page}
\lipsum[1-5]
\newpage
\section{Seventh page}
\lipsum[1-5]
\end{document}