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

Code, edit and compile here:
\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}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
List Of Publications

Code: Select all

Code, edit and compile here:
%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}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
localghost
Site Moderator
Posts: 9201
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
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
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: 9201
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.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Post Reply