In a big library how to search for papers by just the first author name. What should the serach term look like in this case?
Hi,
JabRef does not really have a special field for firstAuthor; you would need to use regex:
Considering the author field looks like this:
Ding, Eric L. and Hutfless, Susan M. and Ding, Xin and Girotra, Saket
you would need regex (enable the regex mode in search)
Searches where the author starts with Ding and can contain whitespace at the start and after the name
author =~ ^\s*Ding\s*,
You can find more info under Organize | JabRef