ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Space from bottom footer to bottom rim of paper
@ 2017-08-09 15:05 Fabrice Couvreur
  2017-08-09 15:37 ` Pablo Rodriguez
  0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Couvreur @ 2017-08-09 15:05 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

I want topspace=bottomspace=2cm
It works for topspace but not for bottomspace
How to do ?
Thanks
Fabrice

\setuplayout
  [header=26pt,
   headerdistance=25pt,
   backspace=2cm,
   width=middle,
   topspace=\dimexpr 2cm-\headerheight-\headerdistance\relax,
   footer=16pt,
   bottomspace=\dimexpr 2cm-\footerheight-\footerdistance\relax]

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

[-- Attachment #2: Type: text/plain, Size: 492 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Space from bottom footer to bottom rim of paper
  2017-08-09 15:05 Space from bottom footer to bottom rim of paper Fabrice Couvreur
@ 2017-08-09 15:37 ` Pablo Rodriguez
  2017-08-09 20:57   ` Fabrice Couvreur
  0 siblings, 1 reply; 3+ messages in thread
From: Pablo Rodriguez @ 2017-08-09 15:37 UTC (permalink / raw)
  To: ntg-context

On 08/09/2017 05:05 PM, Fabrice Couvreur wrote:
> I want topspace=bottomspace=2cm
> It works for topspace but not for bottomspace
> How to do ?

Hi Fabrice,

is this what you intend?

    \showframe
    \setuplayout
      [header=26pt,
       headerdistance=25pt,
       backspace=2cm,
       width=middle,
       topspace=\dimexpr 2cm-\headerheight-\headerdistance\relax,
       footer=16pt,
       height=middle]
       %~ bottomspace=\dimexpr 2cm-\footerheight-\footerdistance\relax]
    \starttext
    \ConTeXt.
    \stoptext

Just in case it helps,

Pablo
-- 
http://www.ousia.tk
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Space from bottom footer to bottom rim of paper
  2017-08-09 15:37 ` Pablo Rodriguez
@ 2017-08-09 20:57   ` Fabrice Couvreur
  0 siblings, 0 replies; 3+ messages in thread
From: Fabrice Couvreur @ 2017-08-09 20:57 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Hi Pablo
Thank you very much. By combining the two codes, you get what I want.
Fabrice


"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

\switchtobodyfont[11pt]

    \definelayout
      [noheader]
      [header=26pt,
       headerdistance=25pt,
       backspace=2cm,
       width=middle,
       topspace=\dimexpr 2cm-\headerheight-\headerdistance\relax,
       footer=16pt,
       height=middle]

    \setuplayout
      [header=\zeropoint,
       headerdistance=25pt,
       backspace=2cm,
       width=middle,
       topspace=\dimexpr 2cm-\headerheight-\headerdistance\relax,
       footer=16pt,
       height=middle]

    \definelayout[1][noheader]

    \setuppagenumbering
        [alternative=,
         location={footer,right]

    \setupbackgrounds[header][text]
                     [frame=off,
                      bottomframe=on,
                      framecolor=gray,
                      rulethickness=2pt]

    \defineframed[headerframed]
                 [frame=off,
                  location=depth,
                  bottomoffset=\lineheight,
                  align=middle,
                  width=fit]

    \setupheadertexts[\headerframed{\ss\sc\bf\red Contrôle n\high{o}\,1 \\
}]

    \setupheadertexts
            [\headerframed{\tfx\ss Lycée JANSON DE SAILLY\\ 31 juillet
2017}]
            [\headerframed{\tfx\ss T\high{le} ES 2 \\ Durée 1 heure 30}]

    \starttext
    \dorecurse{10}{\input knuth}
    \stoptext

2017-08-09 17:37 GMT+02:00 Pablo Rodriguez <oinos@gmx.es>:

> On 08/09/2017 05:05 PM, Fabrice Couvreur wrote:
> > I want topspace=bottomspace=2cm
> > It works for topspace but not for bottomspace
> > How to do ?
>
> Hi Fabrice,
>
> is this what you intend?
>
>     \showframe
>     \setuplayout
>       [header=26pt,
>        headerdistance=25pt,
>        backspace=2cm,
>        width=middle,
>        topspace=\dimexpr 2cm-\headerheight-\headerdistance\relax,
>        footer=16pt,
>        height=middle]
>        %~ bottomspace=\dimexpr 2cm-\footerheight-\footerdistance\relax]
>     \starttext
>     \ConTeXt.
>     \stoptext
>
> Just in case it helps,
>
> Pablo
> --
> http://www.ousia.tk
> ____________________________________________________________
> _______________________
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> ____________________________________________________________
> _______________________

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

[-- Attachment #2: Type: text/plain, Size: 492 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2017-08-09 20:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-09 15:05 Space from bottom footer to bottom rim of paper Fabrice Couvreur
2017-08-09 15:37 ` Pablo Rodriguez
2017-08-09 20:57   ` Fabrice Couvreur

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