I'm currently struggling at using each of my bibliography files for the thesis I'm compiling as being separate sections in each of my chapters and having showed in my table of contents. In addition the bibliography as soon as it is compiled, shows on a separate page.
I tried to build a minimal example out of this and hopes that shows everything I need to.
Code: Select all
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{achemso}
\usepackage[super,sort&compress,comma,sectionbib]{natbib}
\usepackage[sectionbib]{chapterbib}
\begin{document}
\tableofcontents
\chapter{}
\section{Introduction}
blablalbalablalbal \cite{alvarez}
\section{References}
\bibliography{Bibliography/chapter1-refs}
\chapter{}
\section{Introduction}
blablalbalablalbal \cite{ambat}
\section{References}
\bibliography{Bibliography/chapter2-refs}
\end{document}
chapter1-refs.bib
Code: Select all
@article{alvarez,
author = "Alvarez-Pampliega, A. and Lamaka, S. V. and Taryba, M. G. and Madani, M. and De Strycker, J. and Tourwé, E. and Ferreira, M. G. S. and Terryn, H.",
title = "Cut-edge corrosion study on painted aluminum rich metallic coated steel by scanning vibrating electrode and micro-potentiometric techniques",
journal = "Electrochimica Acta",
volume = "61",
number = "0",
pages = "107-117",
year = "2012",
}
chapter2-refs.bib
Code: Select all
@article{ambat,
author = "Ambat, Rajan and Aung, Naing Naing and Zhou, W.",
title = "Evaluation of microstructural effects on corrosion behaviour of {AZ}91D magnesium alloy",
journal = "Corrosion Science",
volume = "42",
number = "8",
pages = "1433-1455",
year = "2000"
}