Quote:
Originally Posted by un_pogaz
I don't think that the implementation of a author_use_surname_suffixes is relevant.
The way Caliber works to sort the names makes that, Yes it is necessary to pay attention to the prefixes and to manage them, but the management of suffix is superfluous (since they will all be grouped in the same place).
|
There is no need to implement the author surname suffixes functionality since the tweak mentioned by theducks already has that functionality. Editing the list of author_name_suffixes to use the suffixes to include the list of suffixes in Persian should take care of the issue going forward.
Quote:
# Author sort name algorithm
author_sort_copy_method = 'comma'
author_name_suffixes = ('Jr',
'Sr',
'Inc',
'Ph.D',
'Phd',
'MD',
'M.D',
'I',
'II',
'III',
'IV',
'Junior',
'Senior')
author_name_prefixes = ('Mr', 'Mrs', 'Ms', 'Dr', 'Prof')
author_name_copywords = ('Agency',
'Corporation',
'Company',
'Co.',
'Council',
'Committee',
'Inc.',
'Institute',
'National',
'Society',
'Club',
'Team')
author_use_surname_prefixes = False
author_surname_prefixes = ('da', 'de', 'di', 'la', 'le', 'van', 'von')
|