I am trying what I believe is a simple thing: page numbering in roman in the center of the footer for the table of content, then in arabic in the right corner of the header for the rest of my dissertation. Everything works well using \pagestyle and the fancyhdr package except for the first page of the references which displays the page number in the center of the footer. The following pages of the references are fine with page numbers in the right corner. I just don't get it. Can anyone help me fix this silly issue?
Here is the code:
Code: Select all
Code, edit and compile here:
\documentclass[letterpaper, 12pt, oneside]{book}\usepackage{fancyhdr}\fancyhf{}\fancyhead[R]{\thepage}\fancyhfoffset[R]{0.5in}\begin{document}\pagenumbering{roman}\pagestyle{plain}\tableofcontents\newpage\pagenumbering{arabic}\pagestyle{fancy}\input{Plain-text.tex}\newpage\bibliographystyle{plain}\bibliography{mybiblio}\end{document}