Page Layout ⇒ Boxes
-
- Posts: 1
- Joined: Sun Nov 06, 2022 7:54 pm
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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}