GeneralHELP with bibliography

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Lana
Posts: 4
Joined: Wed Nov 26, 2008 5:16 pm

HELP with bibliography

Post by Lana »

Hello everyone,
I'm a beginner in latex and hope that my question is simple and someone here can help me.

I need to organize the reference list in alphabetic order and without enumeration, like:

Johnes D (2002) Title of the article, Journal, 1(1):123-125.

With citation in the text using authername and year in parentheses.

Maybe this is very simple, but I could not find such style for bibtex and I also do not know how to get rid from the numbers using \thebibliography.

PS I use documentclass{article}

Thanks in advance!!!

Recommended reading 2024:

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

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

phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

HELP with bibliography

Post by phi »

Hello,

have a look at the natbib package, it provides commands for author–year citations. You can create custom bibliography styles with the custom-bib program.
Last edited by phi on Wed Nov 26, 2008 7:51 pm, edited 1 time in total.
Lana
Posts: 4
Joined: Wed Nov 26, 2008 5:16 pm

Re: HELP with bibliography

Post by Lana »

Yes, I tried... but I still couldn't find how to eliminate numbering in the reference list... Any ideas?
phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

HELP with bibliography

Post by phi »

Sorry, I edited my post just after you answered. Using the custom-bib (also called makebst) program, you can build virtually any bibliography style file that suits your needs.
Lana
Posts: 4
Joined: Wed Nov 26, 2008 5:16 pm

HELP with bibliography

Post by Lana »

phi wrote:Sorry, I edited my post just after you answered. Using the custom-bib (also called makebst) program, you can build virtually any bibliography style file that suits your needs.


Thanks for help :) I'll try
Lana
Posts: 4
Joined: Wed Nov 26, 2008 5:16 pm

Re: HELP with bibliography

Post by Lana »

But I wonder, isn't there some command to simply remove enumeration from the reference list using "\thebibliography". It seems to be an easy thing, but why one should make a customized style for that? :(
phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

HELP with bibliography

Post by phi »

I think the enumeration is removed when you use a natbib style like plainnat, too, because these styles know that the numbers aren’t required for the citations. I’ve just tried that and no numbers show up, but you get "David Johnes. Title of the article. Journal, 1(1):123–125, 2002." rather than your preferred bibliography item style. This is why I suggested using makebst. If you don’t insist on the correct order of the bibliography item parts, you can use the plainnat style. On the other hand, creating a custom style consists only of answering a few simple questions.
User avatar
Juanjo
Posts: 657
Joined: Sat Jan 27, 2007 12:46 am

HELP with bibliography

Post by Juanjo »

It seems that the apa style is close (or equal) to that you are searching for. So add to your tex file the line

Code: Select all

 \bibliographystyle{apa}
You may also try the styles apalike, humannat, bbs,... Of course, don't forget the \bibliography command, whose argument is the name of your bibliographic database.
Use commands defined in natbib, like \citet or \citep, to cite references throughout your document.
The CTAN lion is an artwork by Duane Bibby. Courtesy of www.ctan.org.
Post Reply