Difference between revisions of "Page Layout"

From Wiki
Jump to navigation Jump to search
(Added \setuppapersize command for letter-sized paper.)
Line 210: Line 210:
 
</tr>
 
</tr>
 
</table>
 
</table>
 +
'''Note:'''
 +
 +
*width=middle
 +
<code>
 +
    if cutspace == 0pt then
 +
        cutspace = backspace
 +
    end
 +
    makeupwidth =  paperwidth- backspace -cutspace
 +
</code>
 +
*width=fit
 +
<code> 
 +
      if cutspace == 0pt then
 +
          cutspace = backspace
 +
      end
 +
      makeupwidth = paperwidth-cutspace
 +
      scratchdimen = backspace - leftedgewidth-leftedgedistance-leftmarginwidth-leftmargindistance
 +
      if scratchdimen< 0pt then
 +
          scratchdimen = 0pt
 +
      end
 +
      makeupwidth = makeupwidth - rightmargindistance-rightmarginwidth- rightedgedistance-rightedgewidth- scratchdimen
 +
</code>
 +
* otherwise:
 +
<code>
 +
      makeupwidth=width
 +
      if cutspace == 0pt then
 +
          cutspace = paperwidth-makeupwidth-backspace
 +
      else
 +
            % A kind of inconsistent specification, but used
 +
            % in for instance s-pre-19.tex; the cutspace is
 +
            % used only for determining some kind of right
 +
            % margin; don't use this in doublesided mode
 +
      pass
 +
      end
 +
</code>
  
 
== Setup ==
 
== Setup ==

Revision as of 23:10, 17 November 2009

< Visuals | Layers | Columns | Visual Debugging >

Location of Areas

You can use these design areas in your page:

leftedge leftmargin width rightmargin rightedge
top . . ↑ topspace ↓ . .
header . . HEADER
↑ headerheight ↓
. .
textheight ←leftedgewidth→ MARGINALS
←leftmarginwidth→
TEXT
←textwidth→
×
↑ textheight ↓
MARGINALS
←rightmarginwidth→
←rightedgewidth→
footer . . FOOTER
↑ footerheight ↓
. .
bottom . . ↑ bottomspace ↓ . .


The names in the column and row headers are the keywords for \setuplayout, the words inside of the table are given to clarify ConTeXT terminology. There are also keywords suffixed by "distance" to set the distance between each of the areas, e.g. leftedgedistance, leftmargindistance (from the named area to the inner).

height is normally used instead of textheight, it is the sum of footer + footerdistance + textheight + headerdistance + header

The size of the margins does not affect the size of the text area. Control the size of the text area with backspace, topspace, height and width.

Table of Parameters

ParameterVariableRemarks
paperheight \paperheight height of paper page
paperwidth \paperwidth width of paper page
printpaperheight \printpaperheight differs from paperheight when using Imposition (arranging)
printpaperwidth \printpaperwidth differs from paperwidth when using Imposition (arranging)
topspace \topspace above header: from top rim of paper to to top rim of header
backspace \backspace from left rim of paper to left rim of main text area
height \makeupheight sum of heights of text area, header and footer (plus distances)
width \makeupwidth width of the main text area. \makeupwidth is normally same as \textwidth, but it can be different, for example in columns
top \topheight height of the top area
topdistance \topdistance between top and header
header \headerheight height of header area
headerdistance \headerdistance between header and text
textheight \textheight height of text area
footerdistance \footerdistance between text and footer
footer \footerheight height of footer area
bottomdistance \bottomdistance between footer and bottom
bottom \bottomheight space below footer (but isn't calculated automatically)
bottomspace \bottomspace space from bottom footer to bottom rim of paper
cutspace \cutspace from right rim of paper to right rim of main text area
leftedge \leftedgewidth from left rim of paper to left rim of left margin
leftedgedistance \leftedgedistance between leftegde and left margin
leftmargin \leftmarginwidth width of left margin (marginals space)
leftmargindistance \leftmargindistance between left margin and text
textwidth \textwidth width of text area. when columns are used, the value of \textwidth can differ from \makeupwidth
rightmargindistance \rightmargindistance between text area and right margin
rightmargin \rightmarginwidth width of right margin (marginals area)
rightedgedistance \rightedgedistance between right margin and right edge
rightedge \rightedgewidth from right margin to right rim of paper

Note:

  • width=middle

    if cutspace == 0pt then
       cutspace = backspace
    end
    makeupwidth =  paperwidth- backspace -cutspace

  • width=fit

      if cutspace == 0pt then
         cutspace = backspace
      end
      makeupwidth = paperwidth-cutspace
      scratchdimen = backspace - leftedgewidth-leftedgedistance-leftmarginwidth-leftmargindistance
      if scratchdimen< 0pt then
         scratchdimen = 0pt
      end
      makeupwidth = makeupwidth - rightmargindistance-rightmarginwidth- rightedgedistance-rightedgewidth- scratchdimen

  • otherwise:

      makeupwidth=width
      if cutspace == 0pt then
         cutspace = paperwidth-makeupwidth-backspace
      else
           % A kind of inconsistent specification, but used
           % in for instance s-pre-19.tex; the cutspace is
           % used only for determining some kind of right
           % margin; don't use this in doublesided mode
      pass 
      end

Setup

You define always a right page; if you use a double page layout 'right' and 'left' values are mirrored on a left page.

\setuppapersize[A4][A4] % this is default and may be omitted
\setuplayout[backspace=20mm,
	width=160mm,
	topspace=20mm, top=0mm,
	header=0mm, footer=0mm,
	height=250mm]

You can make all the geometry information visible with \showlayout and the related commands.

See \setuplayout and \setuppapersize in the manual.

If you need an unusual paper size, use \definepapersize and have a look at our list of paper sizes.

For ConTeXt users in the United States, use

\setuppapersize[letter][letter]

for standard U.S Letter-sized paper (8.5"x11.0")

Keep

If you have a certain run of text that you want to keep together, you can test for the number of lines available on the current page with \testpage[n] where n is the number of lines required. If there are not n lines available, a page break will be inserted at the location of the testpage command.


Multiple layouts

If you need to use different layouts in some parts of the document, you can set up a global layout for the overall and then define additional named layouts for the deviating parts. These settings go into the setup area of your document.

\setuplayout[key=value,key=value,...] %global layout
\definelayout[wide][key=value,key=value,...] %different layout called 'wide'
\definelayout[short][key=value,key=value,...]%different layout called 'short'

That takes care of the global layout. When you want to switch to a different layout, you just call it up in the appropriate place in the document:

\setuplayout[wide] % switches to layout called 'wide'

Note. Use reset to revert back to the global layout:

\setuplayout[reset] % reverts to the global layout

This text is based on at a thread on the mailing list, answers and examples are given there by Hans and Wolfgang.

Hints

By using Layers, you can also place elements at specific places, as done in the BusinessCard example.

At Paul Tremblay's XML ConTeXt site, there's a lot about layout from a XML/FO perspective with some descriptive pictures.


TODO: Unfortunately it's not that easy to define a layout. We need more documentation about which parameters define which length, what influences what else etc. (See: To-Do List)