I'm trying to get running page numbers in the upper right corner of my document. No problem, right? Just use fancyhdr. BUT when I use this to include the title page in my page numbers, I get two page #1's. This is unclear, so I attach my code output.
Code:
Code: Select all
\usepackage{setspace}
\usepackage{natbib}
\bibpunct{(}{)}{;}{a}{,}{,}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{\textsc{Professional Autonomy} ~~~~~ \thepage}
\lfoot{}
\cfoot{}
\rfoot{}
\begin{document}
\begin{doublespace}
\begin{titlepage}
\thispagestyle{fancy}
\flushleft{\textsc{Running Header: Professional Autonomy}} \\[5cm]
\begin{center}
\Huge{Refusal to Provide Care}\\
\Large{S. Rosemary Waggoner\\College of Nursing\\University of Vermont}
\end{center}
\end{titlepage}
(a) incorporates concepts discussed and learned in this course,
(b) has a moral/ethical and theoretical foundation,
(c) uses research findings and other evidence to support your arguments,
(d) demonstrates your ability to communicate effectively to a professional audience,
(e) includes critical analysis and,
(f) explores questions of professional leadership.
\bibliographystyle{apa}
\bibliography{refs}
\end{doublespace}
\end{document}
By the way, I figured out my tables problem of my last posting, for those who read it. Thanks!