19 Jun
2024
19 Jun
'24
5:28 p.m.
Lukas via ntg-context schrieb am 19.06.2024 um 17:19:
Hello,
here is a simple code:
---- [...]
I cannot find out how to arrange the tabulate bullets straight above those of itemize, so how to supress the left indeting, to get:
Foo • Aaa Aa • Bbb Bb
Foo • Ttt Tt • Uuu Uu
How do I achieve this?
You have to set the width for the item symbol/counter to 0pt to get rid of the space before the table. %%%% begin example \showframe[text][text] \starttext \startitemize \starttabulate[|||] \NI First item \NC\NR \NI Second item \NC\NR \stoptabulate \stopitemize \startitemize[width=0pt] \starttabulate[|||] \NI First item \NC\NR \NI Second item \NC\NR \stoptabulate \stopitemize \stoptext %%%% end example Wolfgang