Quote:
Originally Posted by l_macd
I like the fact that HarryT's example sorts the series order correctly, but I prefer the book title listed first.
|
Yes, sorting series in order is the specific purpose that I use it for

.
Quote:
Thanks eschwartz, but its fine. After fiddling a little I'm happily using your example with a small edit:
{title}{series:| (| }{series_index:||)}
|
I don't think that's right. I believe it should be:
{title}{series:|| (}{series_index:||)}
The syntax is as follows: if the item, such as "series", is empty, the text following the FIRST vertical bar is output. If the item is not empty, the text following the SECOND vertical bar is output. Thus:
{series:|| (}
Means:
Output the series name.
If the series name is blank, output nothing (there's nothing between the 1st and 2nd |)
If the series name is not blank, output " (".
Hope that helps,