4 Aug
2021
4 Aug
'21
6:44 p.m.
Lukas/ConTeXt via ntg-context schrieb am 04.08.2021 um 17:03:
Hello,
let's have the following sample:
---- \starttext \startitemize[packed_,][headstyle_=,] \item CC
\starttabulate[|l|||] \NI aa \NC bb \NC\NR \stoptabulate
\item AA \stopitemize \stoptext ----
How do I make bullets (\itemtag) horizontally aligned one bellow another?
In my case - bullets within \tabulate are indented (shifted rightwards) somehow, which is undesired.
You can use the 'intext' keyword but this works only well for short texts, otherwise text continus below the bullet point. \starttext \startitemize[intext] \item XXX \starttabulate[|l|||] \NI aa \NC bb \NC\NR \stoptabulate \item YYY \stopitemize \stoptext Wolfgang