|
You probably want this:
{series}{series_index:0>2s| | - }{title}
to get: <series> <volume> - <name>
You can also sort the view inside calibre by sorting first based on title, then based on series, then based on author, to get all your authors correctly subsorted by series (ordered) and for non-series books, by title.
Using the Preferences ==> Advanced ==> Tweaks:
# Specify columns to sort the booklist by on startup
You can also click "Plugin Tweaks" there and add the following line:
sort_columns_at_startup = [('authors', 0), ('series', 0), ('title', 0)]
|