On Oct 7, 1:15 am, XeTaL <
kooo...@gmail.com> wrote:
[snip]
i'm not familiar with makebst, but with biblatex these are pretty
trivial things to do.
>
> What remains is to find out how to place (in RevTex4) the title
> 'References' for the reference list and how to remove the brackets
> from the numbers in the list of references and have the numbers only
> as a number and a period, like this
for this you would write:
\renewcommand{\bibname}{References}
just before the
\printbibliography
command, which you put at the end of your .tex file (where you want it
to appear in your document)
(and to modify its appearance you could renew the chapter command like
any other chapter.)
>
> 1. first citation
> 2. second citation
> 3. third citation
to do this you need to make a modified version of the 'numeric' style
of biblatex. in essence this involves changing three lines to the
numeric.bbx style. or, better yet, make a copy of the numeric.bbx
file (keep in the same folder), call it mystyle.bbx and comment out
the following three lines (near the very top):
%\DeclareFieldFormat{bibentrysetcount}{\mkbibparens{\mknumalph{#1}}}
%\DeclareFieldFormat{labelnumberwidth}{\mkbibbrackets{#1}}
%\DeclareFieldFormat{shorthandwidth}{\mkbibbrackets{#1}}
and change them to this:
\DeclareFieldFormat{bibentrysetcount}{\mknumalph{#1}\addperiod}
\DeclareFieldFormat{labelnumberwidth}{#1\addperiod}
\DeclareFieldFormat{shorthandwidth}{#1\addperiod}
then, call biblatex with whatever options you want, but make sure it
looks at least like this
\usepackage[style=mystyle]{biblatex}
\bibliography{<your .bib file>}
in short, your tex file would have this structure:
------------------------------------------------------
\documentclass{<whatever>}
\usepackage[style=mystyle]{biblatex}
\bibliography{<your bib file>}
\begin{document}
<your document>
%%
\renewcommand{\bibname}{References}
\printbibliography\relax
\end{document}
----------------------------------------------
but you can make it more complicated than that if you wish.
cheers,
jon.