Mikael Kjærulff
Mikael Kjærulff
Tried the redefine in a local copy of `default.latex`, but not the expected result:  Two problems: First time it is at exactly `\csllabelwidth` and `tabto` then decides to make...
No cigar, same result - surprise to me. Read the `tabto` manual - using `\tabto*`seems to address problem 1: ```tex \newcommand{\CSLRightInline}[1]{\tabto*{\csllabelwidth}\parbox[t]{\linewidth - \csllabelwidth}{#1}\break} ``` 
Adding an extra `\break` "solves" problem 2: ```tex \newcommand{\CSLRightInline}[1]{\tabto*{\csllabelwidth}\parbox[t]{\linewidth - \csllabelwidth}{#1}\break\break} ```  But that feels very wrong - and I would assume side effects on other bib styles.
Thinking about it, using `\tabto*` would backspace over a long label (exceeding `\csllabelwidth`) and not the nice behavior of forcing a new line.
Very odd, the first and second block is not perfectly aligned:  Experimented a bit: * First, I don't think a `\tabto*`after a `\break` makes any functional change over just...