Graphics, Figures & Tables ⇒ Frame question
Frame question
Can you please help me ?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
Frame question

A very simple solution around the text area of all pages would be:
Code: Select all
\documentclass{article}
\usepackage{eso-pic}
\usepackage{lipsum}% only some dummy text
\AddToShipoutPicture{%
\linethickness{2pt}%
\AtTextLowerLeft{%
\framebox(\LenToUnit{\textwidth},\LenToUnit{\textheight}){}%
}%
}
\begin{document}
\lipsum% dummy text
\end{document}
Or maybe you want something like a presentation? In this case see, e.g., the beamer class.
