ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* What is required to make \setuplayout work?
@ 2020-05-17 20:24 Gerben Wierda
  2020-05-17 20:52 ` Wolfgang Schuster
  0 siblings, 1 reply; 2+ messages in thread
From: Gerben Wierda @ 2020-05-17 20:24 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

I’ve been trying to define a layout that just has a 5mm no-printing edge around the paper and has all the rest for \textwidth and \textheight. No header, footer, pagenumber, etc. Just as much space as I can get out of a standard A4.

But the following (following the manual and ConTeXtgarden):

\setuplayout[leftedge=5mm,top=5mm,rightedge=5mm,bottom=5mm,
leftmargin=0mm,rightmargin=0mm,
margindistance=0mm,edgedistance=0mm,
topdistance=0mm,headerdistance=0mm,footerdistance=0mm,bottomdistance=0mm]
\showlayoutcomponents % doesn’t seem to do anything
\showframe % this works
\starttext
\input knuth
\stoptext

Doesn’t seem to change the layout. What am I missing?

G

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

[-- Attachment #2: Type: text/plain, Size: 493 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] 2+ messages in thread

* Re: What is required to make \setuplayout work?
  2020-05-17 20:24 What is required to make \setuplayout work? Gerben Wierda
@ 2020-05-17 20:52 ` Wolfgang Schuster
  0 siblings, 0 replies; 2+ messages in thread
From: Wolfgang Schuster @ 2020-05-17 20:52 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Gerben Wierda

Gerben Wierda schrieb am 17.05.2020 um 22:24:
> I’ve been trying to define a layout that just has a 5mm no-printing edge 
> around the paper and has all the rest for \textwidth and \textheight. No 
> header, footer, pagenumber, etc. Just as much space as I can get out of 
> a standard A4.
> 
> But the following (following the manual and ConTeXtgarden):
> 
> \setuplayout[leftedge=5mm,top=5mm,rightedge=5mm,bottom=5mm,
> leftmargin=0mm,rightmargin=0mm,
> margindistance=0mm,edgedistance=0mm,
> topdistance=0mm,headerdistance=0mm,footerdistance=0mm,bottomdistance=0mm]
> \showlayoutcomponents % doesn’t seem to do anything
> \showframe % this works
> \starttext
> \input knuth
> \stoptext
> 
> Doesn’t seem to change the layout. What am I missing?

You're changing the wrong values.

What you have to change are the backspace, topspace, header and footer 
values.

\setuplayout
   [backspace=5mm,
    width=middle,
    topspace=5mm,
    height=middle,
    header=0pt,
    footer=0pt]

\showframe[text]

\starttext
\page[dummy]
\stoptext


Can you also use the predefined page layout which sets all values to 0pt 
and uses all available space, to get margin increase the backspace and 
topspace values.

\setuplayout
   [page]
   [backspace=5mm,
    topspace=5mm]

\setuplayout [page]

\showframe[text]

\starttext
\page[dummy]
\stoptext


Another even short setup is when you use the predefined tight layout 
which has a default value of 5mm for all margins.

\setuplayout [tight]

\showframe[text]

\starttext
\page[dummy]
\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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2020-05-17 20:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-17 20:24 What is required to make \setuplayout work? Gerben Wierda
2020-05-17 20:52 ` 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).