I have a small technical problem but I have been unable to find a solution to it so far.
In my thesis document, the chapter numbers that are displayed on page headers are not updated. It keeps on showing "Chapter 1. Some_Chapter_Name" as header. The reason I don't understand is that the chapter numbers on the first page of each chapter is properly incremented but not as page headers for next pages.
Any help will be much appreciated. I am attaching the complete style code for my LaTeX document later on. I believe this is the relevant section to the problem:
=============== SHORTER VERSION =================
% Set up the document
\documentclass[a4paper, 11pt, oneside]{Thesis} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
%% Chapter Heading ---------------
\renewcommand{\chaptermark}[1]{\btypeout{\thechapter\space #1}\markboth{\@chapapp\ \thechapter\ #1}{\@chapapp\ \thechapter\ #1}}
\usepackage{amsmath,amsfonts,amssymb,amscd,amsthm,xspace}
\theoremstyle{plain}
\newtheorem{example}{Example}[chapter]
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{axiom}[theorem]{Axiom}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\theoremstyle{remark}
\newtheorem{remark}[theorem]{Remark}
\usepackage[centerlast,small,sc]{caption}
\setlength{\captionmargin}{20pt}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage[scriptsize]{subfigure}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{listings}
\usepackage{lstpatch}
\usepackage{lscape}
\usepackage{longtable}
\usepackage{supertabular}
\usepackage{algorithmic}
\usepackage{algorithm}
\usepackage[pdfpagemode={UseOutlines},bookmarks=true,bookmarksopen=true,
bookmarksopenlevel=0,bookmarksnumbered=true,hypertexnames=false,
colorlinks,linkcolor={blue},citecolor={blue},urlcolor={red},
pdfstartview={FitV},unicode,breaklinks=true,
plainpages=false,pdfpagelabels,
pagebackref]{hyperref}
The Thesis template and an example document can be found on http://www.sunilpatel.co.uk/thesis-template/.