BibTeX, biblatex and biberOrder of authors, bibtex with texstudio

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
me_Amal
Posts: 3
Joined: Mon Dec 10, 2018 9:42 pm

Order of authors, bibtex with texstudio

Post by me_Amal »

Hello,
I'm new with BibTeX and latex, I need some help.
I'm trying to have the bibliography defined for my document using BibTeX (texstudio) and package{cite}. Styles such as (unsrt) give me the references in order of appearance in text, also I use code (\nocite{*}). However, I have a problem that I cannot get around. Basically if a reference is supposed to look like:

Code: Select all

@article{KuangHIV,
	author = {Y. Zhao, D. T. Dimitrov, H. Liu and Y. Kuang},
	title = {Mathematical insights in evaluating state dependent effectiveness of HIV prevention interventions},
	journal = {Bulletin of Mathematical Biology},
	volume = {75},
	number = {4},
	year = {2013},
	pages = {649-675},
}
after typesetting it appears as :

Code: Select all

H. Liu Y. Zhao, D. T. Dimitrov,  and Y. Kuang. Mathematical insights in evaluating state dependent effectiveness of HIV prevention interventions. Bulletin of Mathematical Biology....
The problem is, the first author in the last place... that means the list of author look like random
How I can keep the order of authors?

Recommended reading 2024:

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

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

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Order of authors, bibtex with texstudio

Post by Johannes_B »

You have to separate different author names with the string and.
It is a magic word for BibTeX.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
me_Amal
Posts: 3
Joined: Mon Dec 10, 2018 9:42 pm

Order of authors, bibtex with texstudio

Post by me_Amal »

Thank you so much
It's a really great solution
But there is a problem as they show a comma with and at the last author...

How to remove the comma and “and” before last author?

Code: Select all

Y. Zhao, D. T. Dimitrov, H. Liu, and Y. Kuang
I want like this (without comma)

Code: Select all

Y. Zhao, D. T. Dimitrov, H. Liu and Y. Kuang
Post Reply