Mikael Kjærulff

Results 5 comments of Mikael Kjærulff

Tried the redefine in a local copy of `default.latex`, but not the expected result: ![image](https://user-images.githubusercontent.com/17208565/124332016-bdbd3780-db90-11eb-8280-0ea962a14326.png) 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} ``` ![image](https://user-images.githubusercontent.com/17208565/124333417-69b45200-db94-11eb-94a0-10bbbabc5fd7.png)

Adding an extra `\break` "solves" problem 2: ```tex \newcommand{\CSLRightInline}[1]{\tabto*{\csllabelwidth}\parbox[t]{\linewidth - \csllabelwidth}{#1}\break\break} ``` ![image](https://user-images.githubusercontent.com/17208565/124333761-6f5e6780-db95-11eb-9bd9-ff74c490fce9.png) 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: ![image](https://user-images.githubusercontent.com/17208565/124336935-6cb53f80-dba0-11eb-9b0a-358817f14672.png) Experimented a bit: * First, I don't think a `\tabto*`after a `\break` makes any functional change over just...