You can invert the author list for selected books using global search & replace, regexp mode, with the search field "{template}".
The template is
Code:
program:
result = '';
for aut in $authors separator ' & ':
result = list_join(' & ', aut, ' & ', result, ' & ')
rof;
result