ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Offsetting the Item Symbol
@ 2011-12-27 20:33 Emmanuel Asante
  2011-12-27 20:58 ` Wolfgang Schuster
  2011-12-27 21:02 ` Otared Kavian
  0 siblings, 2 replies; 5+ messages in thread
From: Emmanuel Asante @ 2011-12-27 20:33 UTC (permalink / raw)
  To: ConTeXt users

Hi All,

I would like to offset itemized lists including the item symbol itself
and I cannot figure out how to achieve that. I have looked at the
setupitemize options but I did not find any option that does what I
want. Any help in doing this will be very much appreciated.

Thanks,
Emmanuel
___________________________________________________________________________________
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] 5+ messages in thread

* Re: Offsetting the Item Symbol
  2011-12-27 20:33 Offsetting the Item Symbol Emmanuel Asante
@ 2011-12-27 20:58 ` Wolfgang Schuster
  2011-12-27 21:08   ` Emmanuel Asante
  2011-12-27 21:02 ` Otared Kavian
  1 sibling, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2011-12-27 20:58 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 27.12.2011 um 21:33 schrieb Emmanuel Asante:

> Hi All,
> 
> I would like to offset itemized lists including the item symbol itself
> and I cannot figure out how to achieve that. I have looked at the
> setupitemize options but I did not find any option that does what I
> want. Any help in doing this will be very much appreciated.

\starttext

\startitemize
\item One
\item Two
\stopitemize

\startitemize[margin=4cm]
\item One
\item Two
\stopitemize

\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] 5+ messages in thread

* Re: Offsetting the Item Symbol
  2011-12-27 20:33 Offsetting the Item Symbol Emmanuel Asante
  2011-12-27 20:58 ` Wolfgang Schuster
@ 2011-12-27 21:02 ` Otared Kavian
  2011-12-27 21:12   ` Emmanuel Asante
  1 sibling, 1 reply; 5+ messages in thread
From: Otared Kavian @ 2011-12-27 21:02 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi Emmanuel,

Is this what you want? Probably you can adapt the key « distance » to obtain what you want:

\showframe
\starttext
%\startitemize[n][width=3cm,itemalign=flushright,distance=1em]
\startitemize[n][itemalign=flushright,distance=1em,stopper={)},style={bold}]
\dorecurse{12}{\item test}
\stopitemize
\stoptext

Best regards: OK

On 27 déc. 2011, at 21:33, Emmanuel Asante wrote:

> Hi All,
> 
> I would like to offset itemized lists including the item symbol itself
> and I cannot figure out how to achieve that. I have looked at the
> setupitemize options but I did not find any option that does what I
> want. Any help in doing this will be very much appreciated.
> 
> Thanks,
> Emmanuel
> ___________________________________________________________________________________
> 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
> ___________________________________________________________________________________

___________________________________________________________________________________
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] 5+ messages in thread

* Re: Offsetting the Item Symbol
  2011-12-27 20:58 ` Wolfgang Schuster
@ 2011-12-27 21:08   ` Emmanuel Asante
  0 siblings, 0 replies; 5+ messages in thread
From: Emmanuel Asante @ 2011-12-27 21:08 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Thanks, Wolfgang. Your solution is exactly what I wanted.

On Tue, Dec 27, 2011 at 1:58 PM, Wolfgang Schuster
<schuster.wolfgang@googlemail.com> wrote:
>
> Am 27.12.2011 um 21:33 schrieb Emmanuel Asante:
>
>> Hi All,
>>
>> I would like to offset itemized lists including the item symbol itself
>> and I cannot figure out how to achieve that. I have looked at the
>> setupitemize options but I did not find any option that does what I
>> want. Any help in doing this will be very much appreciated.
>
> \starttext
>
> \startitemize
> \item One
> \item Two
> \stopitemize
>
> \startitemize[margin=4cm]
> \item One
> \item Two
> \stopitemize
>
> \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
> ___________________________________________________________________________________
___________________________________________________________________________________
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] 5+ messages in thread

* Re: Offsetting the Item Symbol
  2011-12-27 21:02 ` Otared Kavian
@ 2011-12-27 21:12   ` Emmanuel Asante
  0 siblings, 0 replies; 5+ messages in thread
From: Emmanuel Asante @ 2011-12-27 21:12 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi Otared,

Thanks for your suggestion. Wolgang gave me a solution that did what I
was looking for.

On Tue, Dec 27, 2011 at 2:02 PM, Otared Kavian <otared@gmail.com> wrote:
> Hi Emmanuel,
>
> Is this what you want? Probably you can adapt the key « distance » to obtain what you want:
>
> \showframe
> \starttext
> %\startitemize[n][width=3cm,itemalign=flushright,distance=1em]
> \startitemize[n][itemalign=flushright,distance=1em,stopper={)},style={bold}]
> \dorecurse{12}{\item test}
> \stopitemize
> \stoptext
>
> Best regards: OK
>
> On 27 déc. 2011, at 21:33, Emmanuel Asante wrote:
>
>> Hi All,
>>
>> I would like to offset itemized lists including the item symbol itself
>> and I cannot figure out how to achieve that. I have looked at the
>> setupitemize options but I did not find any option that does what I
>> want. Any help in doing this will be very much appreciated.
>>
>> Thanks,
>> Emmanuel
>> ___________________________________________________________________________________
>> 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
>> ___________________________________________________________________________________
>
> ___________________________________________________________________________________
> 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
> ___________________________________________________________________________________
___________________________________________________________________________________
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] 5+ messages in thread

end of thread, other threads:[~2011-12-27 21:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-27 20:33 Offsetting the Item Symbol Emmanuel Asante
2011-12-27 20:58 ` Wolfgang Schuster
2011-12-27 21:08   ` Emmanuel Asante
2011-12-27 21:02 ` Otared Kavian
2011-12-27 21:12   ` Emmanuel Asante

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).