Page Layout ⇒ Boxes
-
- Posts: 1
- Joined: Sun Nov 06, 2022 7:54 pm
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
Boxes

tabular
, a \framebox
(and internally a \parbox
), using the standard picture
environment, using 

A really simple example:
Code: Select all
\documentclass{article}
\usepackage[margin=1in]{geometry}
\begin{document}
\pagestyle{empty}
\noindent\begin{picture}(\textwidth,\textheight)
\put(0,0){\framebox(\textwidth,\textheight){}}%
\put(.5\textwidth,0){\line(0,1){\textheight}}%
\put(0,.5\textheight){\line(1,0){\textwidth}}%
\end{picture}
\end{document}