General ⇒ Margin Size and Columns
Margin Size and Columns
1. How can I decrease the margin and header size of documents in WinEdt? Right now when I convert my documents to pdf (click the "PDF Texify button" )they have huge margins, headers and footers (so lots of white space around the side). I'm guessing this is by default but I would like to reduce this white space.
2. Is it possible to have columns in Latex without using the "beamer" class? Like maybe some command in the default "article" class.
Thanks for any help you guys can provide.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Margin Size and Columns
Take a look at the geometry package to customize page dimensions. The documentation will show you what to do.jay_k wrote:1. How can I decrease the margin and header size of documents in WinEdt? Right now when I convert my documents to pdf (click the "PDF Texify button" )they have huge margins, headers and footers (so lots of white space around the side). I'm guessing this is by default but I would like to reduce this white space.
Columns can be created with parallel or parcolumns. As usual the documentations will give detailed information.jay_k wrote:2. Is it possible to have columns in Latex without using the "beamer" class? Like maybe some command in the default "article" class.
In case of further questions, feel free to ask.
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Margin Size and Columns

I've used
Code: Select all
\usepackage[a2paper,landscape]{geometry}
\geometry{top=1mm, bottom=1mm, left=1mm, right=1mm}
And
Code: Select all
\usepackage{parcolumns}
\setlength{\parindent}{0cm}
.
.
.
\begin{parcolumns}{2}
\colchunk{Column 1 text here}
\colchunk{Column 2 text here}