看板LaTeX
标 题Re: [问题] natbib 对页面格式的影响
发信站(null) (Sun Jan 20 03:06:57 2013)
转信站ptt!news.ntu!ctuews.n!news.nctu!stanfordtanford.edu!ld4no12998027pbb.0
Without your MWE, this is the file I tried to re-generate your problem. It seems that my MWE does what I expect, meaning I don't see your problem in my case.
My guess is that your reference has only one page long, and consequently you did not see any heading on the first page of the reference chapter.
Again, kind reminder. Please make a MWE for the sake of both -- the helpers and yourself.
\documentclass[twoside]{book}
\usepackage{fancyhdr,natbib}
\usepackage{lipsum}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[CE]{Author}
\fancyhead[CO]{Title}
\fancyhead[RO,LE]{\rm \thepage}
\fancyfoot[C]{\empty}
\begin{document}
\chapter{One}
\lipsum[4-20]
\cite{j1,j2,j3}
\chapter{Two}
\lipsum[2-20]
\cite{b1,b2,b3,b4,b5,b6,b7} % use your own bib
\lipsum[10]
\lipsum[1-4]
\renewcommand{\bibname}{Reference}
\bibliographystyle{chicago}
\bibliography{bibtest}
\appendix
\chapter{Four}
\lipsum[3-20]
\cite{bb1,bb2,bb3,bb4,bb5,bb6,bb7} % use your own bib
\end{document}