Quote:
Originally Posted by PennyWise24
I'm also trying to get the author's name to sort in my library list Last Name, First Name and show up that way in the Kindle Library. I'm hoping someone with more knowledge can help me. Thanks!
|
1. Add custom column; “Column built from other columns”; Lookup name whatever you wish; Column heading likewise but perhaps “Authors”; for Template simply use
{author_sort}
2. Hide the original Authors column, if you wish, and move your custom Authors column into place wherever you wish.
Quote:
Originally Posted by PennyWise24
{series}' '{series_index:0>2s| #:| }{title}
|
As MickiTee wrote, you should have your series index like this instead:
{series_index:0>2s| #|: } but furthermore I do not understand the purpose of the apotrophe-space-apostrophe between your series and series_index fields. That seems completely extraneous to me. So in full I think your correct template is:
Code:
{series}{series_index:0>2s| #|: }{title}
This seems to work on my library using the Template Tester:
Voyages Extraordinaires #03: Journey to the Center of the Earth
Fables
The Chrysalids
The 7 Habits of Highly Effective People
Sprawl #01: Neuromancer
Leaving the apostrophes and space in the template results instead in values like:
Voyages Extraordinaires' ' #03: Journey to the Center of the Earth
…which I don't think is what you're after.