BibTeX, biblatex and biberTwo Reference Lists from one BibTeX Database

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
rudra
Posts: 1
Joined: Sun Feb 19, 2012 9:37 pm

Two Reference Lists from one BibTeX Database

Post by rudra »

Dear friends,

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}
which is included in main file

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}
But its not creating the list of publications with/without chapterbib package. Any suggestion?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Post Reply