ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* \setupitemgroup symbol
@ 2013-02-19 17:10 Troy Henderson
  2013-02-19 17:32 ` luigi scarso
  0 siblings, 1 reply; 8+ messages in thread
From: Troy Henderson @ 2013-02-19 17:10 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 206 bytes --]

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

[-- Attachment #1.2: Type: text/html, Size: 221 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: \setupitemgroup symbol
  2013-02-19 17:10 \setupitemgroup symbol Troy Henderson
@ 2013-02-19 17:32 ` luigi scarso
  2013-02-19 17:41   ` Troy Henderson
                     ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: luigi scarso @ 2013-02-19 17:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Tue, Feb 19, 2013 at 6:10 PM, Troy Henderson <thenders@gmail.com> 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]
\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
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: \setupitemgroup symbol
  2013-02-19 17:32 ` luigi scarso
@ 2013-02-19 17:41   ` Troy Henderson
  2013-02-19 17:46   ` Troy Henderson
  2013-02-19 19:22   ` Wolfgang Schuster
  2 siblings, 0 replies; 8+ messages in thread
From: Troy Henderson @ 2013-02-19 17:41 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 111 bytes --]

>
> \definesymbol[100][§] % or \definesymbol[100][\S]
> \setupitemgroup[symbol=100]
>

Thank you

Troy

[-- Attachment #1.2: Type: text/html, Size: 265 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: \setupitemgroup symbol
  2013-02-19 17:32 ` luigi scarso
  2013-02-19 17:41   ` Troy Henderson
@ 2013-02-19 17:46   ` Troy Henderson
  2013-02-19 18:25     ` luigi scarso
  2013-02-19 18:34     ` Aditya Mahajan
  2013-02-19 19:22   ` Wolfgang Schuster
  2 siblings, 2 replies; 8+ messages in thread
From: Troy Henderson @ 2013-02-19 17:46 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 235 bytes --]

> \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

[-- Attachment #1.2: Type: text/html, Size: 430 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: \setupitemgroup symbol
  2013-02-19 17:46   ` Troy Henderson
@ 2013-02-19 18:25     ` luigi scarso
  2013-02-19 19:24       ` Wolfgang Schuster
  2013-02-19 18:34     ` Aditya Mahajan
  1 sibling, 1 reply; 8+ messages in thread
From: luigi scarso @ 2013-02-19 18:25 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Tue, Feb 19, 2013 at 6:46 PM, Troy Henderson <thenders@gmail.com> 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,]
\startitemize
    \item This is a test.
    \item This is a test.
\stopitemize
\stoptext

--
luigi
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: \setupitemgroup symbol
  2013-02-19 17:46   ` Troy Henderson
  2013-02-19 18:25     ` luigi scarso
@ 2013-02-19 18:34     ` Aditya Mahajan
  1 sibling, 0 replies; 8+ messages in thread
From: Aditya Mahajan @ 2013-02-19 18:34 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: TEXT/PLAIN, Size: 316 bytes --]

On Tue, 19 Feb 2013, 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"?

\startitemize[100,fit]

Aditya

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: \setupitemgroup symbol
  2013-02-19 17:32 ` luigi scarso
  2013-02-19 17:41   ` Troy Henderson
  2013-02-19 17:46   ` Troy Henderson
@ 2013-02-19 19:22   ` Wolfgang Schuster
  2 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Schuster @ 2013-02-19 19:22 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 19.02.2013 um 18:32 schrieb luigi scarso <luigi.scarso@gmail.com>:

> On Tue, Feb 19, 2013 at 6:10 PM, Troy Henderson <thenders@gmail.com> 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
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: \setupitemgroup symbol
  2013-02-19 18:25     ` luigi scarso
@ 2013-02-19 19:24       ` Wolfgang Schuster
  0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Schuster @ 2013-02-19 19:24 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 19.02.2013 um 19:25 schrieb luigi scarso <luigi.scarso@gmail.com>:

> On Tue, Feb 19, 2013 at 6:46 PM, Troy Henderson <thenders@gmail.com> 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
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-02-19 19:24 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-19 17:10 \setupitemgroup symbol Troy Henderson
2013-02-19 17:32 ` luigi scarso
2013-02-19 17:41   ` Troy Henderson
2013-02-19 17:46   ` Troy Henderson
2013-02-19 18:25     ` luigi scarso
2013-02-19 19:24       ` Wolfgang Schuster
2013-02-19 18:34     ` Aditya Mahajan
2013-02-19 19:22   ` Wolfgang Schuster

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).