I am creating a latex document with the following format:
\documentclass[12pt, letterpaper]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{mathptmx} \usepackage[margin=1in]{geometry} \usepackage{graphicx} \usepackage{hyperref} \usepackage{indentfirst} \usepackage{setspace,caption} \captionsetup{font=doublespacing}% Double-spaced float captions \doublespacing% Double-spaced document text \usepackage{fancyhdr} \pagestyle{fancy} \fancyhf{} \renewcommand{\headrulewidth}{0pt} \fancyhead[R]{\thepage} \lhead{MY RUNNING HEAD} \title{my report title} \author{my name} \date{my date} \begin{document} \maketitle \end{document} In fact, I am trying to create a document in APA style. Everything is fine now, but the problem is that I need the running head be on my title page as well. In addition, current title page number is shown below the page while based on the APA style I should put it on top of the page on the right corner in the header.
I was wondering how I can start applying the fancyhdr from the title page. OR is there any way to customize the first page with the current settings that I have?