Quote:
Originally Posted by Merischino
Quote:
This is where I need to be led by the hand. I can get to that file, open it with text edit or what have you, but knowing what to enter to get it to behave the way I want is another question entirely. What are the magic words (or coded instructions?) to tell Calibre to let me enter my own author display and author sort information pretty please?
|
The relevant section of my tweaks.py is
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 = 'invert'
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'