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 ??
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- 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}
}