Hello. I want to create a frame for page in latex , But i'm new to latex and i don't know how i do that .
Can you please help me ?
Graphics, Figures & Tables ⇒ Frame question
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
Frame question
Please be more accurate: What kind of frame? What size? Where placed? For all pages or only some? Can you illustrate your problem with a
minimal working example?
A very simple solution around the text area of all pages would be:
More complex or nicer frames can be made using TikZ or tcolorbox.
Or maybe you want something like a presentation? In this case see, e.g., the beamer class.

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.
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. 
