Quote:
Originally Posted by BaronKrause
I just made 2 custom columns, 1 called "Volume" and set it to "Floating point numbers" just like how books normal numbering is (in case of some rare instance where there would be an in between standard numbering release) and made another custom column called "Version" and set it to "Integers" so I could select things like 2 or 3, etc.
While both will be parsable in calibre companion with {#volume} and {#version}, if I wanted it to look nice like "v2" at the end of a volume, or something like "Volume 4" somewhere I would need to do "v{#version}" and "Volume {#volume}" and that would leave extra garbage like "v" and "Volume " with no number in the names of all items that have that info undefined (the majority).
|
Calibre allows you to format the number has you want when you create a custom column.
So in the edit custom column dialog, in format for numbers you could enter:
- for the "Version" column (integers):
- for the "Volume" column (Floating point numbers):
where {0:d} represents your integers and {:.2f} is a number with two digits after the point. Just put what you want before (v, volume, version...)