Open b-studios opened 5 years ago
Here is a test bibtex file:
Conferences:
@string{ProcOf = "Proceedings of the "}
@string{ICFP = ProcOf # "International Conference on Functional Programming"}
Cities:
@string{NewYork = "New York, USA"}
Papers:
@inproceedings{chen03meta-programming,
author = {Chiyan Chen and
Hongwei Xi},
title = {Meta-Programming Through Typeful Code Representation},
booktitle = ICFP,
year = {2003},
pages = {275--286},
address = NewYork
}
@inproceedings{loh06open,
author = {L{\"o}h, Andres and Hinze, Ralf},
title = {Open data types and open functions},
booktitle = ProcOf # {international conference on Principles and practice of declarative programming},
address = NewYork
}
I am experiencing the same issue. autocomplete-bibtex does like commands like
@String{amj = {Academy of Management Journal}}
in the bib file.
I think that @comment statements are digested by autocomplete-bibtex.
Thanks.
I get the following trace when using a bibtex file that contains a
@STRING
key. Looking atbibtex-lite-worker.js:507
it seems the functionstring()
is simply missing.