I'm writing my PhD manuscript and each chapter has its bibliography section. But I don't want headers to appear in the bibliography section.
This is my MWE
Main.tex
Code: Select all
\documentclass[12pt,a4paper,twoside]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage{lipsum}
\usepackage[square, comma, sort&compress, numbers, sectionbib]{natbib}
\usepackage{chapterbib}
\usepackage{fancyhdr}
\pagestyle{fancy}{
\fancyhf{}
\fancyhead[LE,RO]{\slshape \nouppercase \rightmark}
\fancyhead[LO,RE]{\slshape \nouppercase \leftmark}
\fancyfoot[LO,RE]{\thepage}
}
\fancypagestyle{plain}{
\renewcommand\headrulewidth{0pt}
\fancyhf{}
\fancyfoot[LO,RE]{\thepage}
}
\begin{document}
\include{ch1}
\include{ch2}
\end{document}[/latex]
ch1.tex
[latex]\chapter{ch1}
\lipsum[1-12]
\cite{piazzon2010characterization}
\clearpage
\bibliographystyle{unsrtnat}
\bibliography{biblio}[/latex]
ch1.tex
[latex]\chapter{ch1}
\lipsum[1-12]
\cite{piazzon2010characterization}
\clearpage
\bibliographystyle{unsrtnat}
\bibliography{biblio}
Code: Select all
@article{piazzon2010characterization,
author = {Piazzon, N and Rosenthal, M and Bondar, A and Spitzer, D and Ivanov, DA},
journal = {Journal of Physics and Chemistry of Solids},
localfile = {/media/Seagate Expansion Drive/Papers & thesis/Papers/[piazzon2010characterization] Characterization of explosives traces by Nanocalorimetry.pdf},
number = {2},
pages = {114–118},
publisher = {Elsevier},
title = {{Characterization of explosives traces by the Nanocalorimetry}},
volume = {71},
year = {2010}
}