When I browse a bibtex database with the bibtex
navigator, only the "Ref" field is shown. The other
columns (Title, Author, Journal) remain empty. I tested
this also with the test.bib from tetex, but it is the
same there.
I am using jEdit 4.2 with LatexTools 0.5.2 on Ubuntu
Linux (Sun SDK 1.5).
Logged In: YES
user_id=1506744
Not really a bug, only an annoyance. There are 2 ways to
define the fields in bibtex, with quotes and with curly braces.
won't work with navigator:
@article{anArticle,
author = "The author",
title = "The title"
}
does work:
@article{anArticle,
author = {The author},
title = {The title}
}
However, I strongly wish for both ways to work.