Open prady0t opened 10 months ago
Hi @prady0t
Thanks a lot for your question. At the moment, a conversion to another representation is not supported.
I believe that especially your usecase is frequent enough to add it to the codebase, even if it's not really part of the core functionality of a bibtexparser.
I won't be able to implement this anytime soon though. If you'd be willing to open a PR with a well-tested version of such an exporter I'd be happy to review it though.
I'm currently working on a project that used
pybtex
for parsing bibtex file, but we want to switch tobibtexparser
. Pybtex has a plugin to convert to plaintext (UTF-8). Example :gets converted to UTF-8 plaintext as:
Since direct conversion is not possible in
bibtexparser
what measures can be taken to convert the parsed string to plaintext whose output remains as close to above as possible?I would like to always print author, title etc in a specific order and independent of how it's written in
.bib
file itself.