BibTeX, biblatex and biberbibtex problem

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
casperyc
Posts: 50
Joined: Thu Oct 15, 2009 11:23 pm

bibtex problem

Post by casperyc »

Hi,

I want to get bibtex to work.
I am using natepad++ to run latex.

Code: Select all

cd $(CURRENT_DIRECTORY)
pdflatex.exe "$(FULL_CURRENT_PATH)"
bibtex "$(FULL_CURRENT_PATH)"
pdflatex.exe "$(FULL_CURRENT_PATH)"
C:\Program Files\Adobe\Acrobat 9.0\Acrobat\acrobat.exe $(NAME_PART).pdf
i have tried to run it over and over again.
it just wont work.

is it somehting wrong in myrefs.bib or my notepad++ executing command is wrong?

thanks.

casper
Attachments
bibtex.zip
(1.08 KiB) Downloaded 171 times

Recommended reading 2024:

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

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

bibtex problem

Post by gmedina »

Hi,

I cannot help you with the commands that you are using with notepad++; however, your database myrefs.bib contains two references with the same key and that may cause problems. The references are:

Code: Select all

@Book{singh2002,
 author = {Singh, Simon},
 title = {Fermat's Last Theorem},
 publisher = {Harpercollins Pub Ltd},
 year = {2002},
 address = {City},
 isbn = {1841157910}
 }

@Book{singh2002,
 author = {Singh, Simon},
 title = {The Code Book},
 publisher = {Harpercollins Pub Ltd},
 year = {2002},
 address = {City},
 isbn = {1857028899}
 }
change them, for example, to

Code: Select all

@Book{singh2002a,
 author = {Singh, Simon},
 title = {Fermat's Last Theorem},
 publisher = {Harpercollins Pub Ltd},
 year = {2002},
 address = {City},
 isbn = {1841157910}
 }

@Book{singh2002b,
 author = {Singh, Simon},
 title = {The Code Book},
 publisher = {Harpercollins Pub Ltd},
 year = {2002},
 address = {City},
 isbn = {1857028899}
 }
1,1,2,3,5,8,13,21,34,55,89,144,233,...
casperyc
Posts: 50
Joined: Thu Oct 15, 2009 11:23 pm

Re: bibtex problem

Post by casperyc »

Thanks.
I have solved it now.
casper
Post Reply