6

I need to change the custom format of bibliography citations to fulfil the requirements of a Conference. In this case, I am using an article document with unsrt bibliography style. The citations should have the aspect in the caption below (superscript citations between parenthesis):

enter image description here

Besides that, I need the bibliography to be in the format you can see below:

enter image description here

I have tried the solution proposed in this post but it does not work for article document type. I have tried the code below, but parenthesis are not introduced. Moreover, I do not know how to change the format of the bibliography to adjust it to the requirements.

\documentclass[a4paper,12pt,oneside]{article}

\usepackage[superscript]{cite}
\renewcommand\citeleft{(}
\renewcommand\citeright{)}

\begin{document}

The reference point\cite{Camci2009} in the text\cite{Ben-Daya2009} should be formatted thus\cite{Berdinyazov2009}.

\bibliographystyle{unsrt}
\bibliography{mybib}

\end{document}
Urko
  • 969
  • 1
    AN alternative is to use natbib with the option super and round instead of cite. i.e., \usepacakge[round,super]{natbib} and replace unset with unsrtnat. – Guido Mar 20 '14 at 08:59
  • Thanks @Guido, now the citing works properly. What about the format for the bibliography? – Urko Mar 20 '14 at 09:58

1 Answers1

6

An alternative is to use natbib instead of cite, and the options super and round.

\usepackage[round,super]{natbib}

and replace unsrt with unsrtnat.

The typeset of the numbers in the bibliography is controlled by \@biblabel. Here is a possible way to redefine it.

\makeatletter
\renewcommand{\@biblabel}[1]{#1.}
\makeatother
Guido
  • 30,740