BibTeX, biblatex and biberReference list just with numbers...

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
lefterov
Posts: 4
Joined: Sun Jul 26, 2009 4:42 am

Reference list just with numbers...

Post by lefterov »

Is it possible? The combination of natbib and jmb.bst for example, generates a list where each of the references is numbered: [Number]. Many of the biomedical journals now require different numbering: (Number), or just: Number.
How to get there?

ciao,

Lefterov

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Reference list just with numbers...

Post by gmedina »

Hi,

to get the references' number between (round) parentheses, add this to the preamble:

Code: Select all

\makeatletter
  \def\@biblabel#1{(#1)}
\makeatother
delete the parentheses "(" and ")" in the above code if you don't want parantheses of any type.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
lefterov
Posts: 4
Joined: Sun Jul 26, 2009 4:42 am

Re: Reference list just with numbers...

Post by lefterov »

Thanks!
It works great.

have a nice weekend
Post Reply