ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Rik Kabel via ntg-context <ntg-context@ntg.nl>
To: ntg-context@ntg.nl
Cc: Rik Kabel <ConTeXt@rik.users.panix.com>
Subject: Re: Offseting the baseline grid, and irregular columnsets
Date: Fri, 27 May 2022 12:15:09 -0400	[thread overview]
Message-ID: <f53278bc-5ee2-0a7c-22b8-41cf2c294a6d@rik.users.panix.com> (raw)
In-Reply-To: <CAGraPNcw8M6t8ub=_nQ2Oirt4CrU06Ys7oR0jbOp3aDe9h-h7g@mail.gmail.com>


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

You left out the comma after the backspace setting. WIth that in, all is 
well.

On 2022-05-27 12:03, Stefan Nedeljkovic via ntg-context wrote:
> Thank you very much Aditya for looking into this. But I still have the 
> same baseline grid offset problem. Interestingly, when I remove the 
> columns, the text shifts downwards by two lines.
> My code:
>
> \definemeasure[xheight][0.1in]
>
> \definemeasure[base][3\measured{xheight}]
>
> % Since all distances are in terms of base units, specify the paper 
> size in those
>
> % terms as well.
>
> \definepapersize[slide][width=26\measured{base},height=20\measured{base}]
>
> \setuppapersize[slide]
>
> \setupinterlinespace[line=\measure{base}]
>
> \setuplayout
>
> [
>
> topspace=2\measured{base},
>
> header=\zeropoint,
>
> headerdistance=\zeropoint,
>
> height=middle, % Space for 20-4=16 lines
>
> footerdistance=\zeropoint,
>
> footer=\zeropoint,
>
> bottomspace=2\measured{base},
>
> %
>
> cutspace=2\measured{base},
>
> leftmargin=\zeropoint,
>
> leftmargindistance=\zeropoint,
>
> width=middle, % space for 26-4=22 col
>
> rightmargindistance=\zeropoint,
>
> rightmargin=\zeropoint,
>
> backspace=2\measured{base}
>
> grid=yes,
>
> ]
>
> \showframe
>
> \showgrid
>
> \starttext
>
> \input tufte
>
> \stoptext
>
> I'm attaching the pdf output.
>
>
> On Fri, May 27, 2022 at 5:00 PM Aditya Mahajan <adityam@umich.edu> wrote:
>
>     On Wed, 25 May 2022, Stefan Nedeljkovic via ntg-context wrote:
>
>     > Dear list,
>     >
>     > My adventures into the world of grids continue. In the linked file
>     > (slide_grid_overlay.pdf) there are two things I cannot yet achieve:
>     >
>     >     1. I want the baseline grid to evenly (vertically) divide
>     the text
>     > area, but my code produces a smaller height of the first line and an
>     > additional space at the bottom.
>
>     You did not set footerdistance to zero. So, that takes up some space.
>
>     >     2. The number of columns is 21.5, that is the first column
>     is 0.5 units
>     > wide and the rest are 1 unit wide.
>
>     I believe that columns has to be an integer. Why do you want
>     fractional columns? Columns are useful because you can say:
>
>     \setlayer[name][line=2,column=3]{....}
>
>     for absolute positioning of layers. So, you can always use:
>
>     \setlayer[name][line=2,column=3,x=0.5\measured{base}]{....}
>
>     to move everything to the right by 0.5 units.
>
>     Another option is not to use columns at all, and simply do:
>
>     \setlayer[name][line=2,x=3.5\measured{base}]
>
>     which will place the layer at 3.5 units from the left edge of the
>     text area.
>
>     > Here is what I got right now:
>
>     Currently your textwidth is not a multiple of base units. I have
>     tweaked the code below so that it is.
>
>     \definemeasure[xheight][0.1in]
>     \definemeasure[base][3\measured{xheight}]
>
>     % Since all distances are in terms of base units, specify the
>     paper size in those
>     % terms as well.
>     \definepapersize[slide][width=26\measured{base},height=20\measured{base}]
>     \setuppapersize[slide]
>
>     \setupinterlinespace[line=\measure{base}]
>
>     \setuplayout
>         [
>           topspace=2\measured{base},
>           header=\zeropoint,
>           headerdistance=\zeropoint,
>           height=middle, % Space for 20-4=16 lines
>           footerdistance=\zeropoint,
>           footer=\zeropoint,
>           bottomspace=2\measured{base},
>           %
>           cutspace=2\measured{base},
>           leftmargin=\zeropoint,
>           leftmargindistance=\zeropoint,
>           width=middle, % space for 26-4=22 col
>           rightmargindistance=\zeropoint,
>           rightmargin=\zeropoint,
>           backspace=2\measured{base},
>           %
>           columns=22,
>           columndistance=1pt,
>           %
>           grid=yes,
>         ]
>
>
>     \showframe
>     \showgrid
>
>     \starttext
>     \input tufte
>     \stoptext
>
>
>     Aditya
>
>
> ___________________________________________________________________________________
> 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: 9793 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
___________________________________________________________________________________

  reply	other threads:[~2022-05-27 16:15 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-25 19:53 Stefan Nedeljkovic via ntg-context
2022-05-27 15:00 ` Aditya Mahajan via ntg-context
2022-05-27 16:03   ` Stefan Nedeljkovic via ntg-context
2022-05-27 16:15     ` Rik Kabel via ntg-context [this message]
2022-05-27 16:48       ` Stefan Nedeljkovic via ntg-context
2022-05-27 20:31         ` Aditya Mahajan via ntg-context
2022-05-28  4:48           ` Stefan Nedeljkovic via ntg-context

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f53278bc-5ee2-0a7c-22b8-41cf2c294a6d@rik.users.panix.com \
    --to=ntg-context@ntg.nl \
    --cc=ConTeXt@rik.users.panix.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).