General ⇒ bibtex doesn't work with revtex 4 ??
bibtex doesn't work with revtex 4 ??
Does bibtex not work with revtex4 on texnicCenter ??
my .bib file has the same name as my .tex file and is in the same folder. The .bib file is just:
@Article{05Wang,
author = {Y. Wang, J. Michael},
title = {Analysis of topological manifolds},
year ={2005},
journal = {Bioinformatics}
volume = {17}
pages = {429-437}
}
And to reference the article in my .tex file I wrote \cite{05Wang}
The TexnicCenter compiler says:
:\citation{05Wang
:}
I'm skipping whatever's left of this command
I couldn't open database file filename.bib
What's going on here ??
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: bibtex doesn't work with revtex 4 ??
bibtex doesn't work with revtex 4 ??
second, your bibtex-entry is not well-formed. after every but the last attribute-value-pair you need a comma. however, the last three pairs are not comma-separated. here is a corrected entry:
Code: Select all
@Article{05Wang,
author = {Y. Wang, J. Michael},
title = {Analysis of topological manifolds},
year ={2005},
journal = {Bioinformatics},
volume = {17},
pages = {429-437}
}