I'm using my own class file based upon report.
I would like to move the page number of the first bibliopgraphy page to the top right corner instead of the bottom center.
I've used fancyhdr to change the plain pagestyle a bit and define an overall pagestyle. (I frequently use
Code: Select all
\thispagestyle{plain}
Code: Select all
Code, edit and compile here:
\pagestyle{fancy}\renewcommand{\headrulewidth}{0pt}\renewcommand{\footrulewidth}{0pt}\fancyhf{}\fancyhead[R]{\thepage}\fancypagestyle{plain}{\fancyhead{}\fancyfoot[C]{\thepage}}
1. Does the report class specify how LaTeX places bibliography page numbers?
2. Can I change the page numbers of all pages in the bibliography so that they are in the top right corner without destroying the plain pagestyle?
Thanks,
Keith
P.S. I've included the style file I'm working on in the following and the only other package used besides those listed below is ULEM.
Code: Select all
Code, edit and compile here:
\NeedsTeXFormat{LaTeX2e}\ProvidesClass{MathThesis}\DeclareOption*{\PassOptionsToClass{\CurrentOption}{report}}\ProcessOptions\LoadClass[12pt]{report}\RequirePackage[total={6in, 8.5in}, top=1.5in, left=1.5in, headheight=15pt, headsep=0.3in, footskip=0.5in]{geometry}\RequirePackage[reqno]{amsmath}\RequirePackage{amsthm}\RequirePackage{amsfonts}\RequirePackage[mathscr]{eucal}\RequirePackage{setspace}\RequirePackage{cite}\RequirePackage{fancyhdr}\RequirePackage{graphicx}\RequirePackage{subfigure}\RequirePackage[subfigure]{tocloft}\RequirePackage{remreset}%% ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~% Modifications of the base class begin here% ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%%% Definitions for Theorems, Corollaries, etc.%\newtheorem{corollary}{Corollary}[section]\newtheorem{lemma}{Lemma}[section]\newtheorem{theorem}{Theorem}[section]\newtheorem{proposition}{Proposition}[section]\newtheorem{definition}{Definition}[section]