Page LayoutBoxes

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
djohn_math
Posts: 1
Joined: Sun Nov 06, 2022 7:54 pm

Boxes

Post by djohn_math »

Hello,

I am trying to figure out how I can make the attached file in tex. The file attached was made with word/notability.
Attachments
Doc1.pdf
(32.06 KiB) Downloaded 266 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

MjK
Posts: 89
Joined: Fri Jan 28, 2022 6:09 pm

Boxes

Post by MjK »

I think, you are not telling us the whole story. :( However, there are lot's of alternatives to make such a picture, e.g. using a tabular, a \framebox (and internally a \parbox), using the standard picture environment, using pgf, using tcolorbox, using …

A really simple example:

Code: Select all

Code, edit and compile here:
\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}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
And because this is very, very basic, I would recommend to read a (good) LaTeX introduction. You won't become happy using LaTeX without doing so.
My main topics are KOMA-Script and other questions related to my packages. If I reply to any other topic or if you've not yet added a minimal working example, please do not expect any further response. And please don't forget to tag examples as code.
Post Reply