textpos 布局的网格

textpos 布局的网格

这可能是一个太明显的问题。

我正在尝试在页面上布局内容,但不得不重新编译很多次。我想使用\TPHorizmodule\TPVertmodule(来自textpos包)作为参考来布局网格,这将有助于我布局文档。我看到了一些“网格”建议,但我很难理解它们。

任何帮助都深表感谢。

答案1

以下是使用 TikZ 的一种可能性:

\documentclass{article}
\usepackage{textpos}
\usepackage{tikz}
\usepackage{lipsum}% just to generate text for the example

\newcommand\Mygrid{%
\tikz[
  remember picture,
  overlay,
  yscale=-1,
  xstep=\TPHorizModule,ystep=\TPVertModule,
  yshift=13pt,xshift=4pt]
  \draw (current page.north west) grid (current page.south east);}

\begin{document}
\Mygrid
\lipsum[1-5]
\end{document}

在此处输入图片描述

相关内容