25

The editor asked me to use the following format.

Reference
1. Author, blah blah

Instead of

Reference
[1] Author, blah blah ...

Even though in the main text, [1] style has been used.

For example,


Smith [1] has proposed ...

Reference
1. Smith,


This is what I want.

Could you please advise how I can do the above?

Thanks in advance.

Martin Scharrer
  • 262,582
Sung
  • 253

2 Answers2

31

Add the following to the preamble of your document:

\makeatletter
\renewcommand\@biblabel[1]{#1.}
\makeatother
Gonzalo Medina
  • 505,128
  • 2
    If you came here via internet search like me once: Here's a solution for biblatex: http://tex.stackexchange.com/questions/208821/dont-use-brackets-in-bibliography-1-instead-of-1 – Ferdi Mar 14 '15 at 22:01
  • 1
    Perhaps you can improve this answer by telling how to change the format to (1), which seems another FAQ. And adding a MWE (which four years ago wasn't fashionable). – egreg Mar 19 '15 at 19:04
2

This one line should do if you are using biblatex

\DeclareFieldFormat{labelnumberwidth}{\mkbibbold{#1\adddot}}

Credits to @moewe's post for a similar question.