BibTeX, biblatex and bibernumeric labels in the bibliography list

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
chzch
Posts: 1
Joined: Mon Jun 29, 2009 5:45 pm

numeric labels in the bibliography list

Post by chzch »

I am writing my thesis in latex and using biometrics bibliography style. My supervisor asked me to add numeric labels in the bibliography list. Can somebody tell me how to modify the biometrics.bst file? Thanks.

Recommended reading 2024:

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

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

spiegboy
Posts: 120
Joined: Thu Dec 06, 2007 9:58 am

Re: numeric labels in the bibliography list

Post by spiegboy »

it's possible to modify any bst file, could you upload the bst file you want to modify.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

numeric labels in the bibliography list

Post by localghost »

This is only an idea. Do a backup of the original file an modify FUNCTION {output.bibitem} as follows.

Code: Select all

FUNCTION {output.bibitem}
{ newline$
  "\bibitem{" write$
  cite$ write$
  "}" write$
  newline$
  ""
  before.all 'output.state :=
}
These lines are only copied from plain.bst which has numbered labels for the bibliography items as output. Since I didn't test that, a report about success would be nice.
Post Reply