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 245 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
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

\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}
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