Hi, I have been using JabRef v3.8.2 on macOS Sierra (10.12.6) for a long time. Recently I upgrade macOS to Big Sur (11.5.1) and I find JabRef v3.8.2 can not be used, thus I upgrade JabRef as well.
I find JabRef v5.3 stores entries in a different format, it changes the order of fields. For example, in my old file stored by v3.8.2, an article entry reads
@Article{keys,
author = {Author},
title = {Title},
journal = {Journal},
year = {2021},
volume = {11},
number = {6},
pages = {1},
}
But in the file stored by v5.3, it reads
@Article{keys,
author = {Author},
title = {Title},
number = {6},
pages = {1},
volume = {11},
journal = {Journal},
year = {2021},
}
I understand the difference in the order of fields of an entry does not affect the output when using BibTeX or BibLaTeX, but I am still wondering if there is a way to specify the order of fields of each entry when saving?
PS. It seems the file format changes quite a bit from v3.8.2 to v5.3, thus git diff
on my database file reports many changes (though most of them is just reordering of fields in each entry).