21

Sometimes when I'm reviewing my document and rearranging images and tables, It would be sometimes great to see the page margins.

Is there any easy way to print the page margins when reviewing a document?

lockstep
  • 250,273

2 Answers2

32

You can achieve this by activating the showframe option of the geometry package. If you don’t want the package to modify your page layout, you additionally need to pass the pass option:

\usepackage[showframe, pass]{geometry}
Konrad Rudolph
  • 39,394
  • 22
  • 107
  • 160
8

You can also achieve this by adding the showframe package to your preamble:

\usepackage{showframe}
  • I am trying to show both, the left and the right margin frames for a memoir based document. Only the right margin frame is drawn. Why so? see demo code in http://tex.stackexchange.com/q/272453/8272 – Nikos Alexandris Oct 12 '15 at 10:26