I have a central bib file, which includes my publications and my references for my thesis. What I want to do is to use the same bib file for both. Is this possible? I have defined my pub.tex as
Code: Select all
\renewcommand{\bibname}{List of Publications}
\cite{me2009}
\cite{Me2010}
\cite{Banerjee2010a}
\cite{Banerjee2010b}
\cite{Bhattacharjee2010}
\cite{barbara}
\nocite{prashant2010}
\nocite{rb2011a}
\nocite{rb2011b}
Code: Select all
\include{preamble}
\pagestyle{empty}
\maketitle
\frontmatter
\tableofcontents
\listoffigures
\listoftables
\include{pub}
\include{ackw}
\mainmatter
\include{<chapters>}
\backmatter
\fancyhf{}
\renewcommand{\bibname}{References}
\addcontentsline{toc}{section}{References}
\bibliography{biblio}
\bibliographystyle{plain}
\end{document}