In a Springer journal article the citations pdf correctly in brackets in the text [1] [2], however at the end list 1. 2. Whereas the journal requires [1] [2] in the bibliography. Here's a minimal working extract:
Code: Select all
\begin{filecontents*}{example.eps}
gsave
newpath
20 20 moveto
20 220 lineto
220 220 lineto
220 20 lineto
closepath
2 setlinewidth
gsave
.4 setgray fill
grestore
stroke
grestore
\end{filecontents*}
%
\documentclass[referee]{svjour2}
\journalname{ijp}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{amsmath}
\usepackage{latexsym}
\usepackage{revsymb}
\usepackage{natbib}
\usepackage{eucal}
\usepackage{amsfonts, amssymb}
\usepackage{times}
\usepackage{bm}
\begin{document}
\title{Title}
\maketitle
The references need to appear in brackets like this \cite{Wieman:1994} \cite{Harness:2010Maple} in the following bibliography list below:
% BibTeX users please use one of
%\bibliographystyle{spbasic} % basic style, author-year citations
%\bibliographystyle{spmpsci} % mathematics and physical sciences
%\bibliographystyle{spphys} % APS-like style for physics
%\bibliography{} % name your BibTeX data base
\bibliographystyle{plain}
% Non-BibTeX users please use
\begin{thebibliography}{99}
\expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi
\expandafter\ifx\csname bibnamefont\endcsname\relax
\def\bibnamefont#1{#1}\fi
\expandafter\ifx\csname bibfnamefont\endcsname\relax
\def\bibfnamefont#1{#1}\fi
\expandafter\ifx\csname citenamefont\endcsname\relax
\def\citenamefont#1{#1}\fi
\expandafter\ifx\csname url\endcsname\relax
\def\url#1{\texttt{#1}}\fi
\expandafter\ifx\csname urlprefix\endcsname\relax\def\urlprefix{URL }\fi
\providecommand{\bibinfo}[2]{#2}
\providecommand{\eprint}[2][]{\url{#2}}
\bibitem{Wieman:1994}
\bibinfo{author}{\bibfnamefont{H}} \bibnamefont{Wieman}
\bibinfo{author}{\bibnamefont{and the EOS Collaboration}}
\emph{\bibinfo{title}{Heavy Ion Reaction Measurements with the EOS TPC (Looking for Central Collisions with Missing Energy)}}
(\bibinfo{publisher}{in the Proceedings of the Tenth Winter Workshop on Nuclear Dynamics})
\bibinfo{year}{(1994)}
\bibitem{Harness:2010Maple}
\bibinfo{author}{\bibnamefont{D A}} \bibnamefont{Harness}
\emph{\bibinfo{title}{Simulated Reality Hologram Matrix State Space (click-through calibration check)}},\
(\bibinfo{publisher}{Ontario : Waterloo Maplesoft Inc}) \bibinfo{year}{(2010)}
\url{http://www.maplesoft.com/applications/view.aspx?SID=95142}
\end{thebibliography}
\end{document}