Quote:
Originally Posted by Blue2u
 THANK YOU SO MUCH! So far the library is working perfectly except for 1 thing, author sort is showing [for example] as Veronica Roth, not Roth, Veronica. Is there an easy way to change this? [I made a column to show how it would sort to the KPW by the plugin data].
|
Officially, this cannot be done, as the Kindle uses the comma to recognize "Lastname, Firstname". It'll swap those, and remove the comma, but it will STILL sort on Lastname. I find this annoying.
Use this plugboard in place of the one Booklover6 gave you to sort-of-fix-it:
Code:
{author_sort:re(\, ,_)} {series:|(|} {series_index:0>2s||)}
It'll do this:
Code:
Title of the book
Lastname_Firstname (Series Name 01)
Or, of course, combine Booklover6's plugboard with mine, if you prefer her formatting for series and index
Code:
{author_sort:re(\, ,_)}{series:| - | }{series_index:0>2s| - | }
Result:
Code:
Title of the book
Lastname_Firstname - Series Name - 01