ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Indentation inside environment
@ 2015-01-30 11:59 Fabrice Couvreur
  2015-01-30 15:13 ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Fabrice Couvreur @ 2015-01-30 11:59 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Hi,
I would have no indentation for the text (ward)
thank you,
Fabrice

\starttext
\startitemize[A][stopper={.},style=bold]
\iem
\blank[big]
\input ward
\startitemize[n][stopper={.},style=bold]
\item
\item
\item
\stopitemize
\item
\blank[big]
\input ward
\startitemize[n][stopper={.},style=bold]
\item
\item
\item
\stopitemize
\stopitemize
\stoptext

[-- Attachment #1.2: Type: text/html, Size: 680 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] 5+ messages in thread

* Re: Indentation inside environment
  2015-01-30 11:59 Indentation inside environment Fabrice Couvreur
@ 2015-01-30 15:13 ` Wolfgang Schuster
  2015-01-30 18:56   ` Fabrice
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2015-01-30 15:13 UTC (permalink / raw)
  To: mailing list for ConTeXt users


> Am 30.01.2015 um 12:59 schrieb Fabrice Couvreur <fabrice1.couvreur@gmail.com>:
> 
> Hi,
> I would have no indentation for the text (ward)
> thank you,
> Fabrice
> 
> \starttext
> \startitemize[A][stopper={.},style=bold]
> \iem  

   ^^^^
   \item

> \blank[big]
> \input ward
> \startitemize[n][stopper={.},style=bold]
> \item 
> \item 
> \item 
> \stopitemize
> \item 
> \blank[big]
> \input ward
> \startitemize[n][stopper={.},style=bold]
> \item 
> \item 
> \item 
> \stopitemize
> \stopitemize
> \stoptext

You can use the “intent” keyword (i.e. \startitemize[intext][..,..=..,..]) or as alternative
use a enumeration for the outer level of your list.

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: Indentation inside environment
  2015-01-30 15:13 ` Wolfgang Schuster
@ 2015-01-30 18:56   ` Fabrice
  2015-01-30 19:07     ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Fabrice @ 2015-01-30 18:56 UTC (permalink / raw)
  To: ntg-context

Hi Wolfgang,
For the first option, it's ok, thank you.
Can you clarify for the second option?
Best regards,
Fabrice
___________________________________________________________________________________
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: Indentation inside environment
  2015-01-30 18:56   ` Fabrice
@ 2015-01-30 19:07     ` Wolfgang Schuster
  2015-01-31  8:28       ` Fabrice
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2015-01-30 19:07 UTC (permalink / raw)
  To: mailing list for ConTeXt users


> Am 30.01.2015 um 19:56 schrieb Fabrice <couvreur.fabrice@wanadoo.fr>:
> 
> Hi Wolfgang,
> For the first option, it's ok, thank you.
> Can you clarify for the second option?

Something like (untested):

\defineenumeration[FirstLevel][numberconversion=A,alternative=top]

\starttext

\startFirstLevel
	\startitemize[n]
	\item
	\item
	\item
	\stopitemize
\stopFirstLevel

\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: Indentation inside environment
  2015-01-30 19:07     ` Wolfgang Schuster
@ 2015-01-31  8:28       ` Fabrice
  0 siblings, 0 replies; 5+ messages in thread
From: Fabrice @ 2015-01-31  8:28 UTC (permalink / raw)
  To: ntg-context

Hi Wolfgang,
It is very clear, as usual.
Thank you again,
Fabrice
___________________________________________________________________________________
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:[~2015-01-31  8:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-30 11:59 Indentation inside environment Fabrice Couvreur
2015-01-30 15:13 ` Wolfgang Schuster
2015-01-30 18:56   ` Fabrice
2015-01-30 19:07     ` Wolfgang Schuster
2015-01-31  8:28       ` Fabrice

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