ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* joinedup in itemize changed?
@ 2014-04-30 18:38 Mikael P. Sundqvist
  2014-05-02  7:17 ` Mikael P. Sundqvist
  0 siblings, 1 reply; 6+ messages in thread
From: Mikael P. Sundqvist @ 2014-04-30 18:38 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi,

has joinedup changed? At the moment it gives no white space before
first item and last item _and_ pack it. See example.

Best regards, Mikael

\starttext
Bla
\startitemize[3]%OK
\item One
\item Two
\item Three
\stopitemize
Bla
\startitemize[3,joinedup]% Not as expected
\item One
\item Two
\item Three
\stopitemize
Bla
\startitemize[3,packed]%OK
\item One
\item Two
\item Three
\stopitemize
Bla
\startitemize[3,packed,joinedup]%OK
\item One
\item Two
\item Three
\stopitemize
Bla
\stoptext
___________________________________________________________________________________
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] 6+ messages in thread

* Re: joinedup in itemize changed?
  2014-04-30 18:38 joinedup in itemize changed? Mikael P. Sundqvist
@ 2014-05-02  7:17 ` Mikael P. Sundqvist
  2014-05-02  7:27   ` Procházka Lukáš Ing. - Pontex s. r. o.
  2014-05-02 11:37   ` Rogers, Michael K
  0 siblings, 2 replies; 6+ messages in thread
From: Mikael P. Sundqvist @ 2014-05-02  7:17 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Wed, Apr 30, 2014 at 8:38 PM, Mikael P. Sundqvist <mickep@gmail.com> wrote:
> Hi,
>
> has joinedup changed? At the moment it gives no white space before
> first item and last item _and_ pack it. See example.
>
> Best regards, Mikael
>
> \starttext
> Bla
> \startitemize[3]%OK
> \item One
> \item Two
> \item Three
> \stopitemize
> Bla
> \startitemize[3,joinedup]% Not as expected
> \item One
> \item Two
> \item Three
> \stopitemize
> Bla
> \startitemize[3,packed]%OK
> \item One
> \item Two
> \item Three
> \stopitemize
> Bla
> \startitemize[3,packed,joinedup]%OK
> \item One
> \item Two
> \item Three
> \stopitemize
> Bla
> \stoptext

I hate to bump, but can someone confirm that this is a problem in
ConTeXt or show me the right way of doing this?

/Mikael
___________________________________________________________________________________
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] 6+ messages in thread

* Re: joinedup in itemize changed?
  2014-05-02  7:17 ` Mikael P. Sundqvist
@ 2014-05-02  7:27   ` Procházka Lukáš Ing. - Pontex s. r. o.
  2014-05-02 11:37   ` Rogers, Michael K
  1 sibling, 0 replies; 6+ messages in thread
From: Procházka Lukáš Ing. - Pontex s. r. o. @ 2014-05-02  7:27 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: text/plain, Size: 509 bytes --]

Hello,

I've never used "joinedup" option so I cannot confirm its behavior has changed.

Anyway, I'm getting the same result with the last Ctx beta and Ctx "ver: 2012.11.26"; see attachs.

It seems "joindeup" implies "packed", too; I don't know if it is an intention/feature.

Best regards,

Lukas


-- 
Ing. Lukáš Procházka [mailto:LPr@pontex.cz]
Pontex s. r. o.      [mailto:pontex@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 241 096 751
Fax: +420 244 461 038

[-- Attachment #2: t.pdf --]
[-- Type: application/pdf, Size: 7248 bytes --]

[-- Attachment #3: t1.pdf --]
[-- Type: application/pdf, Size: 7346 bytes --]

[-- Attachment #4: 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] 6+ messages in thread

* Re: joinedup in itemize changed?
  2014-05-02  7:17 ` Mikael P. Sundqvist
  2014-05-02  7:27   ` Procházka Lukáš Ing. - Pontex s. r. o.
@ 2014-05-02 11:37   ` Rogers, Michael K
  2014-05-02 11:43     ` Mikael P. Sundqvist
  1 sibling, 1 reply; 6+ messages in thread
From: Rogers, Michael K @ 2014-05-02 11:37 UTC (permalink / raw)
  To: mailing list for ConTeXt users

The keys packed and joinedup seem to control the keys before, after, and inbetween.  You can use these keys directly to get whatever style you like.  The setting packed is equivalent to

\startitemize[3][before=\blank,after=\blank,inbetween=]

The setting joinedup is equivalent to

\startitemize[3][before=,after=,inbetween=]

If you want the first and last items joined to the text with whitespace between the items, then try this:

\starttext
\startitemize[3][before=,after=,inbetween=\blank]
\item One
\item Two
\item Three
\stopitemize
\stoptext

On May 2, 2014, at 3:17 AM, "Mikael P. Sundqvist" <mickep@gmail.com>
 wrote:

> On Wed, Apr 30, 2014 at 8:38 PM, Mikael P. Sundqvist <mickep@gmail.com> wrote:
>> Hi,
>> 
>> has joinedup changed? At the moment it gives no white space before
>> first item and last item _and_ pack it. See example.
>> 
>> Best regards, Mikael
>> 
>> \starttext
>> Bla
>> \startitemize[3]%OK
>> \item One
>> \item Two
>> \item Three
>> \stopitemize
>> Bla
>> \startitemize[3,joinedup]% Not as expected
>> \item One
>> \item Two
>> \item Three
>> \stopitemize
>> Bla
>> \startitemize[3,packed]%OK
>> \item One
>> \item Two
>> \item Three
>> \stopitemize
>> Bla
>> \startitemize[3,packed,joinedup]%OK
>> \item One
>> \item Two
>> \item Three
>> \stopitemize
>> Bla
>> \stoptext
> 
> I hate to bump, but can someone confirm that this is a problem in
> ConTeXt or show me the right way of doing this?
> 
> /Mikael
> ___________________________________________________________________________________
> 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] 6+ messages in thread

* Re: joinedup in itemize changed?
  2014-05-02 11:37   ` Rogers, Michael K
@ 2014-05-02 11:43     ` Mikael P. Sundqvist
  2014-05-02 11:56       ` Wolfgang Schuster
  0 siblings, 1 reply; 6+ messages in thread
From: Mikael P. Sundqvist @ 2014-05-02 11:43 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Fri, May 2, 2014 at 1:37 PM, Rogers, Michael K <mroge02@emory.edu> wrote:
> The keys packed and joinedup seem to control the keys before, after, and inbetween.  You can use these keys directly to get whatever style you like.  The setting packed is equivalent to
>
> \startitemize[3][before=\blank,after=\blank,inbetween=]
>
> The setting joinedup is equivalent to
>
> \startitemize[3][before=,after=,inbetween=]
>
> If you want the first and last items joined to the text with whitespace between the items, then try this:
>
> \starttext
> \startitemize[3][before=,after=,inbetween=\blank]
> \item One
> \item Two
> \item Three
> \stopitemize
> \stoptext
>
> On May 2, 2014, at 3:17 AM, "Mikael P. Sundqvist" <mickep@gmail.com>
>  wrote:
>
>> On Wed, Apr 30, 2014 at 8:38 PM, Mikael P. Sundqvist <mickep@gmail.com> wrote:
>>> Hi,
>>>
>>> has joinedup changed? At the moment it gives no white space before
>>> first item and last item _and_ pack it. See example.
>>>
>>> Best regards, Mikael
>>>
>>> \starttext
>>> Bla
>>> \startitemize[3]%OK
>>> \item One
>>> \item Two
>>> \item Three
>>> \stopitemize
>>> Bla
>>> \startitemize[3,joinedup]% Not as expected
>>> \item One
>>> \item Two
>>> \item Three
>>> \stopitemize
>>> Bla
>>> \startitemize[3,packed]%OK
>>> \item One
>>> \item Two
>>> \item Three
>>> \stopitemize
>>> Bla
>>> \startitemize[3,packed,joinedup]%OK
>>> \item One
>>> \item Two
>>> \item Three
>>> \stopitemize
>>> Bla
>>> \stoptext
>>
>> I hate to bump, but can someone confirm that this is a problem in
>> ConTeXt or show me the right way of doing this?
>>
>> /Mikael
>> ___________________________________________________________________________________
>> 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
> ___________________________________________________________________________________


Thank you very much, that solves my problem (now I simply use before,
inbetween and after).

And thank you Lukas for trying the example.

I still believe that joinedup has changed? Is it meant to be as it is now?

/Mikael
___________________________________________________________________________________
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] 6+ messages in thread

* Re: joinedup in itemize changed?
  2014-05-02 11:43     ` Mikael P. Sundqvist
@ 2014-05-02 11:56       ` Wolfgang Schuster
  0 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Schuster @ 2014-05-02 11:56 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 02.05.2014 um 13:43 schrieb Mikael P. Sundqvist <mickep@gmail.com>:

> Thank you very much, that solves my problem (now I simply use before,
> inbetween and after).
> 
> And thank you Lukas for trying the example.
> 
> I still believe that joinedup has changed? Is it meant to be as it is now?

Your example behaved the same in MkIV and MkII, so nothing has changed.

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

end of thread, other threads:[~2014-05-02 11:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-30 18:38 joinedup in itemize changed? Mikael P. Sundqvist
2014-05-02  7:17 ` Mikael P. Sundqvist
2014-05-02  7:27   ` Procházka Lukáš Ing. - Pontex s. r. o.
2014-05-02 11:37   ` Rogers, Michael K
2014-05-02 11:43     ` Mikael P. Sundqvist
2014-05-02 11:56       ` 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).