ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* How to really set the paper margin?
@ 2020-11-04 15:47 Sylvain Hubert
  2020-11-04 15:56 ` Sylvain Hubert
  2020-11-04 16:01 ` Duncan Hothersall
  0 siblings, 2 replies; 4+ messages in thread
From: Sylvain Hubert @ 2020-11-04 15:47 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Dear List,

The following example results in a pdf that has a wide margin on both sides
despite the \setuplayout :

    \showframe
    \setuppapersize[A4][A4]
    \setuplayout[margin=0cm, edge=0cm, margindistance=0cm, edgedistance=0cm]
    \starttext
    hello world
    \stoptext

Does anyone know how to really set the paper margin?

Thanks!

Best,
Sylvain

[-- Attachment #1.2: Type: text/html, Size: 567 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] 4+ messages in thread

* Re: How to really set the paper margin?
  2020-11-04 15:47 How to really set the paper margin? Sylvain Hubert
@ 2020-11-04 15:56 ` Sylvain Hubert
  2020-11-04 16:01 ` Duncan Hothersall
  1 sibling, 0 replies; 4+ messages in thread
From: Sylvain Hubert @ 2020-11-04 15:56 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Never mind, there's a 'backspace=0cm' to be set.

On Wed, 4 Nov 2020 at 16:47, Sylvain Hubert <champignoom@gmail.com> wrote:

> Dear List,
>
> The following example results in a pdf that has a wide margin on both
> sides despite the \setuplayout :
>
>     \showframe
>     \setuppapersize[A4][A4]
>     \setuplayout[margin=0cm, edge=0cm, margindistance=0cm,
> edgedistance=0cm]
>     \starttext
>     hello world
>     \stoptext
>
> Does anyone know how to really set the paper margin?
>
> Thanks!
>
> Best,
> Sylvain
>

[-- Attachment #1.2: Type: text/html, Size: 990 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] 4+ messages in thread

* Re: How to really set the paper margin?
  2020-11-04 15:47 How to really set the paper margin? Sylvain Hubert
  2020-11-04 15:56 ` Sylvain Hubert
@ 2020-11-04 16:01 ` Duncan Hothersall
  2020-11-04 16:15   ` Sylvain Hubert
  1 sibling, 1 reply; 4+ messages in thread
From: Duncan Hothersall @ 2020-11-04 16:01 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Hi Sylvain,

This page may be useful: https://wiki.contextgarden.net/Layout

Basically the core parameters are backspace and width, and topspace and
height. Everything else hangs off them.

Duncan

On Wed, 4 Nov 2020 at 15:48, Sylvain Hubert <champignoom@gmail.com> wrote:

> Dear List,
>
> The following example results in a pdf that has a wide margin on both
> sides despite the \setuplayout :
>
>     \showframe
>     \setuppapersize[A4][A4]
>     \setuplayout[margin=0cm, edge=0cm, margindistance=0cm,
> edgedistance=0cm]
>     \starttext
>     hello world
>     \stoptext
>
> Does anyone know how to really set the paper margin?
>
> Thanks!
>
> Best,
> Sylvain
>
> ___________________________________________________________________________________
> 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: 2570 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] 4+ messages in thread

* Re: How to really set the paper margin?
  2020-11-04 16:01 ` Duncan Hothersall
@ 2020-11-04 16:15   ` Sylvain Hubert
  0 siblings, 0 replies; 4+ messages in thread
From: Sylvain Hubert @ 2020-11-04 16:15 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

On Wed, 4 Nov 2020 at 17:06, Duncan Hothersall <dh@capdm.com> wrote:

> Hi Sylvain,
>
> This page may be useful: https://wiki.contextgarden.net/Layout
>

I was aware of this page but have mistakenly inferred from the figure that
the backspace is an automatically calculated sum of other parameters.

Basically the core parameters are backspace and width, and topspace and
> height. Everything else hangs off them.
>

Indeed. Thanks for the information!

Sylvain

[-- Attachment #1.2: Type: text/html, Size: 1181 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] 4+ messages in thread

end of thread, other threads:[~2020-11-04 16:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-04 15:47 How to really set the paper margin? Sylvain Hubert
2020-11-04 15:56 ` Sylvain Hubert
2020-11-04 16:01 ` Duncan Hothersall
2020-11-04 16:15   ` Sylvain Hubert

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