
19 Feb
2013
19 Feb
'13
8:24 p.m.
Am 19.02.2013 um 19:25 schrieb luigi scarso
On Tue, Feb 19, 2013 at 6:46 PM, Troy Henderson
wrote: \starttext \definesymbol[100][§] % or \definesymbol[100][\S] \setupitemgroup[symbol=100] \startitemize[100] \item This is a test.
How can I ensure there is no space between the \S and "This is a test"?
Troy a plain TeX solution...
\starttext \newbox\SectionSymbol \setbox\SectionSymbol=\hbox{§} % or \hbox{§\,} \definesymbol[SectionSymbol][§] \setupitemgroup[symbol=SectionSymbol,width=\wd\SectionSymbol,]
width=\widthofstring{§} Wolfgang