I have been working on a research paper right now. Unfortunately, I have been encountering the following problems.
1. I have a problem customizing the footer and header for each page. The first page must have different header and footer that's why I used the following code:
\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}
The problem is that I cannot resize the fonts of the footer and the header. It's too big.
2. I need to apply different footer and headers for the remaining pages. When I use \pagestyle{fancy}, the footer and header for the first page only is added in the whole document. I need to only headers at the center of the even and odd pages (excluding first page).