[Tex/LaTex] Padding left, top, right and bottom in LaTeX

margins

I want to include the Padding left, top, right and bottom. How can we do in LaTeX?

Best Answer

If I understand your question correctly, the geometry package could be used:

\usepackage[%
    left=0.50in,%
    right=0.50in,%
    top=1.0in,%
    bottom=1.0in,%
    paperheight=11in,%
    paperwidth=8.5in%
]{geometry}%

Also see xports answer to How can I set up the left/right margin of the page to 1 inch, the top/bottom one to ½ inch?