On 2014-01-30 Jan Tosovsky wrote:
I am trying to typeset a quite complex list of accounting entries. http://drifted.in/other/045.jpg
I've made some progress with this code: \def\mydots{\leavevmode\xleaders\hbox to 0.5em{\hfil.\hfil}\hfill\kern0pt} % credit to: http://tex.stackexchange.com/questions/85335/how-to-change-dot-spacing-in-do tfill \starttext \setupTABLE[frame=off] \setupTABLE[column][first][align={hz, hanging}, indenting=yes] %indenting seems to be ignored \setupTABLE[column][last][align={left, low}] \bTABLE[columndistance=0.2cm] \bTR \bTD[indent=next] \input{ward} \mydots \eTD \bTD 1.220 \eTD \eTR \bTR \bTD somewhat more \mydots \eTD \bTD[bottomframe=on] 5.186 \eTD \eTR \bTR \bTD {\hskip 11cm} together \mydots \eTD \bTD 6.406 \eTD \eTR \eTABLE \stoptext Now I am trying to left indent paragraph lines except the first one. But indenting seems to be ignored in the cell at all. How can I accomplish this? Thanks, Jan