You are already using the
titlesec package. Just define a new page style with appropriate settings. The code below gives some inspiration.
Code: Select all
\begin{filecontents*}{\jobname.bib}
@BOOK{knuth84,
author={Donald Ervin Knuth},
title={The \TeX book},
year={1984},
publisher={Addison-Wesley}
}
@BOOK{lamport94,
author={Leslie Lamport},
title={\LaTeX\ -- A Document Preparation System},
note={User's Guide and Reference Manual},
year={1994},
publisher={Addison-Wesley},
edition={Second}
}
@BOOK{mitgoo04,
author={Frank Mittelbach and Michel Goossens},
title={The \LaTeX\ Companion},
year={2004},
publisher={Addison-Wesley},
edition={Second}
}
@BOOK{goomit07,
author={Michel Goossens and Frank Mittelbach and Sebastian Rahtz and Denis Roegel and Herbert Voss},
title={The \LaTeX\ Graphics Companion},
year={2007},
publisher={Addison-Wesley},
edition={Second}
}
\end{filecontents*}
\documentclass[11pt,oneside,english]{book}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage[pagestyles,raggedright]{titlesec}
\usepackage[nottoc]{tocbibind}
\usepackage{blindtext}
\renewcommand{\bibname}{References}
\titleformat*{\section}{\LARGE\bfseries\rmfamily}
\titleformat*{\subsection}{\Large\bfseries\rmfamily}
\titleformat*{\subsubsection}{\large\bfseries\rmfamily}
\newpagestyle{main}[\small\sffamily\rm]{%
\headrule
\sethead{\thechapter\enspace\chaptertitle}{}{\thepage}
}
\newpagestyle{back}[\small\sffamily\rm]{%
\headrule
\sethead{\chaptertitle}{}{\thepage}
}
\begin{document}
\pagestyle{main}
\blinddocument
\nocite{*}
\pagestyle{back}
\bibliographystyle{apalike}
\bibliography{\jobname}
\newpage~
\end{document}
The same page style (named »front« for a more comprehensive view) is suggestive for the front matter part with ToC, LoF and LoT.
As always, the
blindtext package is only for creating dummy text, thus it is
not part of the solution. The
tocbibind package generates an entry for the bibliography in ToC and is also not part of the solution but just a useful addition.
Thorsten