Arranging bullets within tabulate and itemize
Hello, here is a simple code: ---- \definedescription[Mat] [headstyle=bi, text={Foo},alternative=serried,width_=fit,indenting_={yes,medium},indenting_=no,align_=left,indentnext_=no,hang_=none, ] \starttext \startMat \startitemize[packed,][] \starttabulate[|l|l|l|] \NI Aaa \NC Aa \NC\AR \NI Bbb \NC Bb \NC\AR \stoptabulate \stopitemize \stopMat \startMat \startitemize[packed_,joinedup_][afterhead=,] \head Ttt \par Tt \head Uuu \par Uu \stopitemize \stopMat \stoptext ---- which produces something like: Foo • Aaa Aa • Bbb Bb Foo • Ttt Tt • Uuu Uu 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? TIA. Best regards, Lukas
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
participants (2)
-
context@vivaldi.net
-
Wolfgang Schuster