i am preparing a paper and it is the first time i will do it in latex.
When i was doing a lay-out sketch i ran across the problem, that the \section - command and the reference appear twice
how can i fix it? so that reference appears once, as topic 6?
Code: Select all
documentclass[
pdftex,
a4paper,
oneside,
idxtotoc,
%parskip,
parindent,
12pt,
liststotoc,
openbib
]{article}
\usepackage{natbib}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage[final]{pdfpages}
\usepackage{amsmath}
\usepackage{mathptmx}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\section{Introduction}
\section{Method/Model/Theory}
\section{Data}
\section{Results}
\section{Summary and Concluding Remarks}
\section{References}
\\
\nocite{*}
\bibliographystyle{plain}
\bibliography{Reference}
\end{document}