Page size, Margins
The page dimensions in a LaTeX document are highly configurable and there is a package offering a simple way to change the length and layout of various elements in a document.
The geometry package
geometry package\documentclass{article}
\usepackage{blindtext} % Generating dummy text
\usepackage[a4paper, total={6in, 8in}, margin=2in]{geometry}
\begin{document}
\blindtext[2]
\end{document}
Understand geometry syntax
geometry syntax
Last updated