ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* setuplist inherit margin and width
@ 2011-06-23 14:49 Steffen Wolfrum
  2011-06-23 16:08 ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Steffen Wolfrum @ 2011-06-23 14:49 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi,

say, I want to design the TOC. Now I would write:

\setuplist[LevelFour]  [margin=1.20cm,width=0.5cm,...]
\setuplist[LevelFive]  [margin=1.70cm,width=0.5cm,]


But is there some clever command that makes a calculation like this:

\setuplist[LevelFour]  [margin=1.20cm,width=0.5cm,...]
\setuplist[LevelFive]  [margin={\the\dimexpr\measure{margin[LevelFour]+width[LevelFour]}\relax},width=0.5cm,]

Any idea?


Thanks, Steffen

___________________________________________________________________________________
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: setuplist inherit margin and width
  2011-06-23 14:49 setuplist inherit margin and width Steffen Wolfrum
@ 2011-06-23 16:08 ` Wolfgang Schuster
  2011-06-23 17:49   ` Jaroslav Hajtmar
  2011-06-23 17:57   ` Hans Hagen
  0 siblings, 2 replies; 5+ messages in thread
From: Wolfgang Schuster @ 2011-06-23 16:08 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 23.06.2011 um 16:49 schrieb Steffen Wolfrum:

> Hi,
> 
> say, I want to design the TOC. Now I would write:
> 
> \setuplist[LevelFour]  [margin=1.20cm,width=0.5cm,...]
> \setuplist[LevelFive]  [margin=1.70cm,width=0.5cm,]
> 
> 
> But is there some clever command that makes a calculation like this:
> 
> \setuplist[LevelFour]  [margin=1.20cm,width=0.5cm,...]
> \setuplist[LevelFive]  [margin={\the\dimexpr\measure{margin[LevelFour]+width[LevelFour]}\relax},width=0.5cm,]
> 
> Any idea?



Variant 1:

\definemeasure [chapter:width]       [0.4cm]
\definemeasure [section:width]       [0.7cm]
\definemeasure [subsection:width]    [1.0cm]
\definemeasure [subsubsection:width] [1.3cm]

\definemeasure [chapter:margin]       [0cm]
\definemeasure [section:margin]       [\the\dimexpr\measure{chapter:margin}+\measure{chapter:width}\relax]
\definemeasure [subsection:margin]    [\the\dimexpr\measure{section:margin}+\measure{section:width}\relax]
\definemeasure [subsubsection:margin] [\the\dimexpr\measure{subsection:margin}+\measure{subsection:width}\relax]

\setuplist [chapter]       [margin=\measure{chapter:margin},width=\measure{chapter:width}]
\setuplist [section]       [margin=\measure{section:margin},width=\measure{section:width}]
\setuplist [subsection]    [margin=\measure{subsection:margin},width=\measure{subsection:width}]
\setuplist [subsubsection] [margin=\measure{subsubsection:margin},width=\measure{subsubsection:width}]

\starttext

\placecontent

\chapter{One}

\section{Two}

\subsection{Three}

\subsubsection{Four}

\stoptext


Variant 2:

\setuplist [chapter]       [width=0.4cm,margin=0cm]
\setuplist [section]       [width=0.7cm,margin=\the\dimexpr\namedlistparameter{chapter}{margin}+\namedlistparameter{chapter}{width}\relax]
\setuplist [subsection]    [width=1.0cm,margin=\the\dimexpr\namedlistparameter{section}{margin}+\namedlistparameter{section}{width}\relax]
\setuplist [subsubsection] [width=1.3cm,margin=\the\dimexpr\namedlistparameter{subsection}{margin}+\namedlistparameter{subsection}{width}\relax]

\starttext

\placecontent

\chapter{One}

\section{Two}

\subsection{Three}

\subsubsection{Four}

\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: setuplist inherit margin and width
  2011-06-23 16:08 ` Wolfgang Schuster
@ 2011-06-23 17:49   ` Jaroslav Hajtmar
  2011-06-23 18:43     ` Wolfgang Schuster
  2011-06-23 17:57   ` Hans Hagen
  1 sibling, 1 reply; 5+ messages in thread
From: Jaroslav Hajtmar @ 2011-06-23 17:49 UTC (permalink / raw)
  To: ntg-context

Hello  Wolfgang.
I know that my question is a little off this topic, but:
Is there any possibility change due this method affect appearance list 
typed using \placecontent (the gap between list items, alignment, etc.)?
If I knew how to do it, maybe I found how to change appearance list of 
bibliography (typed using \placepublications), that does not work how I 
want in context minimals (inappropriate gaps and poor alignment).

Thanx Jaroslav



Dne 23.6.2011 18:08, Wolfgang Schuster napsal(a):
> Am 23.06.2011 um 16:49 schrieb Steffen Wolfrum:
>
>    
>> Hi,
>>
>> say, I want to design the TOC. Now I would write:
>>
>> \setuplist[LevelFour]  [margin=1.20cm,width=0.5cm,...]
>> \setuplist[LevelFive]  [margin=1.70cm,width=0.5cm,]
>>
>>
>> But is there some clever command that makes a calculation like this:
>>
>> \setuplist[LevelFour]  [margin=1.20cm,width=0.5cm,...]
>> \setuplist[LevelFive]  [margin={\the\dimexpr\measure{margin[LevelFour]+width[LevelFour]}\relax},width=0.5cm,]
>>
>> Any idea?
>>      
>
>
> Variant 1:
>
> \definemeasure [chapter:width]       [0.4cm]
> \definemeasure [section:width]       [0.7cm]
> \definemeasure [subsection:width]    [1.0cm]
> \definemeasure [subsubsection:width] [1.3cm]
>
> \definemeasure [chapter:margin]       [0cm]
> \definemeasure [section:margin]       [\the\dimexpr\measure{chapter:margin}+\measure{chapter:width}\relax]
> \definemeasure [subsection:margin]    [\the\dimexpr\measure{section:margin}+\measure{section:width}\relax]
> \definemeasure [subsubsection:margin] [\the\dimexpr\measure{subsection:margin}+\measure{subsection:width}\relax]
>
> \setuplist [chapter]       [margin=\measure{chapter:margin},width=\measure{chapter:width}]
> \setuplist [section]       [margin=\measure{section:margin},width=\measure{section:width}]
> \setuplist [subsection]    [margin=\measure{subsection:margin},width=\measure{subsection:width}]
> \setuplist [subsubsection] [margin=\measure{subsubsection:margin},width=\measure{subsubsection:width}]
>
> \starttext
>
> \placecontent
>
> \chapter{One}
>
> \section{Two}
>
> \subsection{Three}
>
> \subsubsection{Four}
>
> \stoptext
>
>
> Variant 2:
>
> \setuplist [chapter]       [width=0.4cm,margin=0cm]
> \setuplist [section]       [width=0.7cm,margin=\the\dimexpr\namedlistparameter{chapter}{margin}+\namedlistparameter{chapter}{width}\relax]
> \setuplist [subsection]    [width=1.0cm,margin=\the\dimexpr\namedlistparameter{section}{margin}+\namedlistparameter{section}{width}\relax]
> \setuplist [subsubsection] [width=1.3cm,margin=\the\dimexpr\namedlistparameter{subsection}{margin}+\namedlistparameter{subsection}{width}\relax]
>
> \starttext
>
> \placecontent
>
> \chapter{One}
>
> \section{Two}
>
> \subsection{Three}
>
> \subsubsection{Four}
>
> \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: setuplist inherit margin and width
  2011-06-23 16:08 ` Wolfgang Schuster
  2011-06-23 17:49   ` Jaroslav Hajtmar
@ 2011-06-23 17:57   ` Hans Hagen
  1 sibling, 0 replies; 5+ messages in thread
From: Hans Hagen @ 2011-06-23 17:57 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 23-6-2011 6:08, Wolfgang Schuster wrote:

> Variant 1:

> Variant 2:

Nice examples for the wiki!

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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: setuplist inherit margin and width
  2011-06-23 17:49   ` Jaroslav Hajtmar
@ 2011-06-23 18:43     ` Wolfgang Schuster
  0 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Schuster @ 2011-06-23 18:43 UTC (permalink / raw)
  To: hajtmar, mailing list for ConTeXt users


Am 23.06.2011 um 19:49 schrieb Jaroslav Hajtmar:

> Hello  Wolfgang.
> I know that my question is a little off this topic, but:
> Is there any possibility change due this method affect appearance list typed using \placecontent (the gap between list items, alignment, etc.)?
> If I knew how to do it, maybe I found how to change appearance list of bibliography (typed using \placepublications), that does not work how I want in context minimals (inappropriate gaps and poor alignment).

I’m sorry but don’t understand what you mean but the vertical space between list entries is controlled by the “before” and “after”.

Please rephrase your question and post it in a new thread.

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

end of thread, other threads:[~2011-06-23 18:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-23 14:49 setuplist inherit margin and width Steffen Wolfrum
2011-06-23 16:08 ` Wolfgang Schuster
2011-06-23 17:49   ` Jaroslav Hajtmar
2011-06-23 18:43     ` Wolfgang Schuster
2011-06-23 17:57   ` Hans Hagen

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