I would like to use the section symbol \S as the symbol of an itemized (non-enumerated) list. It seems that the wiki shows 9 predefined bullet types, but I don't see how to use a custom bullet type. Troy
On Tue, Feb 19, 2013 at 6:10 PM, Troy Henderson
I would like to use the section symbol \S as the symbol of an itemized (non-enumerated) list. It seems that the wiki shows 9 predefined bullet types, but I don't see how to use a custom bullet type.
Troy
\starttext \definesymbol[100][§] % or \definesymbol[100][\S] \setupitemgroup[symbol=100] \startitemize[100] \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \item This is a test. \stopitemize \stoptext -- luigi
On Tue, Feb 19, 2013 at 6:46 PM, Troy Henderson
\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,] \startitemize \item This is a test. \item This is a test. \stopitemize \stoptext -- luigi
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
Am 19.02.2013 um 18:32 schrieb luigi scarso
On Tue, Feb 19, 2013 at 6:10 PM, Troy Henderson
wrote: I would like to use the section symbol \S as the symbol of an itemized (non-enumerated) list. It seems that the wiki shows 9 predefined bullet types, but I don't see how to use a custom bullet type.
Troy
\starttext \definesymbol[100][§] % or \definesymbol[100][\S]
\starttext \symbol[S] \stoptext Wolfgang
participants (4)
-
Aditya Mahajan
-
luigi scarso
-
Troy Henderson
-
Wolfgang Schuster