Quote:
Originally Posted by jackie_w
My guess is that you want yours changed to:
Code:
# The algorithm used to copy author to author_sort
# Possible values are:
# invert: use "fn ln" -> "ln, fn" (the original algorithm)
# copy : copy author to author_sort without modification
# comma : use 'copy' if there is a ',' in the name, otherwise use 'invert'
author_sort_copy_method = 'copy'
|
Most people who like Lastname, Firstname use author_sort_copy_method = 'comma'
Using "comma", if metadata has the author as "Smith, John" then it sorts under Smith. If it has author "John Smith", it still sorts under Smith. Using "copy" it sorts under John in the latter case.