BibTeX, biblatex and biberProblems with the section command and Bibtex

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
greenfalcon
Posts: 10
Joined: Wed Apr 21, 2010 9:47 pm

Problems with the section command and Bibtex

Post by greenfalcon »

Hi everyone,

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}
thanks
Attachments
reference appears twice. how can i fix it?<br />thank you
reference appears twice. how can i fix it?
thank you
reference-problem.PNG (13.11 KiB) Viewed 1960 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

Re: Problems with the section command and Bibtex

Post by josephwright »

Start by posting an example that actually shows the issue: the code you added to the forum works fine.
Joseph Wright
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Problems with the section command and Bibtex

Post by localghost »

Just for your information. You are using global options that only apply to the classes of KOMA Script. This classes have a built-in feature to get the bibliography numbered. If you want to use a standard class and have the desired effect, take a look at the tocbibind package. In both cases drop the additional section for the references.


Thorsten
Post Reply