
Am 15.04.2025 um 15:50 schrieb LPr Pontex:
Hello,
here's a sample code:
---- \starttext \startitemize[packed_,joinedup_][headstyle_=]
\head Ccc:
\startitemize[packed][width=0pt] \item Ddd \starttabulate[|||r|] \NI Aaa \NC Bbb \AR \stoptabulate \stopitemize \stopitemize \stoptext ----
How do I remove the blank space in front of the table, marked by the green line in the picture, so that the text "- Aaa Bbb" moves just below the "- Ddd"?
Use either \startnarrower[-left] \starttabulate[|||r|] \NI Aaa \NC Bbb \AR \stoptabulate \stopnarrower when you use the default width-value for itemize or \startnarrow[left=1.5em][-left] \starttabulate[|||r|] \NI Aaa \NC Bbb \AR \stoptabulate \stopnarrow and change width=... to the correct value when you have a custom value for the width setting for itemize. The narrow(er) environment is necessary in this case because you want to shift the table a bit to the left to counter the indentation of each itemize entry, which is used to place the symbol for the regular item entries. Wolfgang