1

I'm working on a Kindle eBook for a company. They want the author field to display as "Company, Inc." This works fine in Mobipocket, but when I open the file in Kindle for PC, it diplays as "Inc. Company". It appears that Kindle interprets the comma as a separator between last and first name.

If I remove the comma, it displays (more) correctly as "Company Inc.", but I would prefer to keep the comma if possible. Anyone have advice on how to make that happen?

Michael Snoyman
  • 31,100
  • 3
  • 48
  • 77

2 Answers2

1

You could try adding a file-as in the hope that that will be used as the machine sort value, leaving the actual display content untouched.

<dc:creator opf:file-as="Company, Inc" opf:role="aut">
Company, Inc
</dc:creator>
Alex K.
  • 171,639
  • 30
  • 264
  • 288
1

It looks like there is no way to solve this in Kindle. For this case, the client agreed to simply remove the comma (e.g., Company Inc.).

Michael Snoyman
  • 31,100
  • 3
  • 48
  • 77