ConTeXt:在边缘块中使用网格

ConTeXt:在边缘块中使用网格

即使我设置grid=yes\setuplayout,边缘块也不会使用网格。

示例文件:

\setuplayout
  [
    grid=yes,
    cutspace=6cm,
    width=fit,
    backspace=6cm,
  ]
\showgrid

\starttext
\input knuth % Properly snapped to grid

\startmarginblock
  {\tfd foobar} % Not a multiple of the line height

  \input knuth % Gets knocked off the grid
\stopmarginblock
\stoptext

示例文件渲染

笔记:我并不坚持使用\startmarginblock,但我确实需要在边缘处有一个网格对齐的段落。

答案1

不确定为什么有人会想这样做,但在行校正之前进行行校正以\blank[overlay]消除行校正插入的垂直空间似乎是有效的。

\setuplayout
  [grid=yes,
   cutspace=6cm,
   width=fit,
   backspace=6cm]
\showgrid

\starttext
\input knuth\par

\startmarginblock
  \blank[overlay]
  \startlinecorrection
    {\tfd foobar\par}
  \stoplinecorrection
  \input ward\par
  \startlinecorrection
    {\tfd barbaz\par}
  \stoplinecorrection
  \input jojomayer\par
\stopmarginblock

\stoptext

在此处输入图片描述

相关内容