BibTeX, biblatex and biber ⇒ Ref. Style using 1. I. Newton... instead of [1] I. Newton...
Ref. Style using 1. I. Newton... instead of [1] I. Newton...
I used 'latex makebst' to generate my own .bst file... bloody journal is very particular. Everything looks great style-wise, apart from the listing in the reference section. At the moment it reads, as most style packages:
References
[1] I. Newton, ...
I need it to read:
References
1. I. Newton, ...
I have not come across any style packages that make such a change and I am unclear, which line in the .bst file to modify...
My guess is the easiest fix is to modify the .bst file... any suggestion on, which function controls this aspect?
Thank you in advance.
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
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Ref. Style using 1. I. Newton... instead of [1] I. Newton...
Code: Select all
\makeatletter
\renewcommand*\@biblabel#1{#1.}
\makeatother
Re: Ref. Style using 1. I. Newton... instead of [1] I. Newto
I actually ended up using:
\makeatletter
\renewcommand\@biblabel[1]{$#1.$}
\makeatother
There is an error message without using the '$' around the '#'
Ciao