(Main file)
Code: Select all
\usepackage{fancyhdr}
\usepackage[section]{chapterbib}
\begin{document}
...
\include{1_Article1/A1}
\include{2_Article2/A2}
etc
\end{document}
Code: Select all
\renewcommand{\bibname}{References}
\bibliography{A1_bib}
\bibliographystyle{ieeetr}
Fancyhdr configuration in my preamble is the following one:
Code: Select all
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{\MakeUppercase{\thechapter. #1 }}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{}
\fancyhead[RO]{\bfseries\rightmark}
\fancyhead[LE]{\bfseries\leftmark}
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{0.5pt}
\fancypagestyle{plain}{
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}
}
Does anybody give me a hand with this? Thanks a lot in advance!