BibTeX, biblatex and biberReferences and List of Publications

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
mariamelansary
Posts: 4
Joined: Sun Oct 09, 2011 7:34 am

References and List of Publications

Post by mariamelansary »

alsalamo alikum

Dears,
I'd like to add my list of publications after the References chapter using bibtex for both

I read this post but in this post they need to replace references section with list of publication and the second part about categorizing the same section....which I don't actually want!

I need the two chapters, I need references followed by the list of publications.

I tried this code, but it doesn't work...

References

Code: Select all

\newcommand{\References}
{
%The following four lines are just for making a TOC entry that links correctly to the valid References page number
\cleardoublepage
\newpage
\phantomsection \label{bib}
\addcontentsline{toc}{chapter}{References}
\renewcommand{\bibname}{References}%renaming the default "Bibliography" title to "References"
\bibliographystyle{ieeetr}% I think the nice is either ieeetr or plain styles only
\bibliography{MSc}
}
List Of Publications

Code: Select all

%Create Publications list
\newcommand{\ListOfPublications}
{
\cleardoublepage
\newpage
\nocite{*}
\renewcommand{\bibname}{List of Publications}%renaming the default "Bibliography" title to "References"
\bibliographystyle{ieeetr}% I think the nice is either ieeetr or plain styles only
\bibliography{ListOfPublications}
}

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

References and List of Publications

Post by localghost »

I think you are better with the multibib package. The package manual contains a simple example of application. If you run into trouble, feel free to ask further questions.


Thorsten
mariamelansary
Posts: 4
Joined: Sun Oct 09, 2011 7:34 am

Re: References and List of Publications

Post by mariamelansary »

Yes Thorsten, It seems promise :idea:
I will try and tell you the feedback
Thanks for the quick response
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

References and List of Publications

Post by localghost »

Just a short addition which I always forget regarding bibliographies. The biblatex package could also be helpful for multiple bibliographies. Its manual is quite comprehensive so you might have to read a lot of stuff.
Post Reply