Hey guys I'm completely new to LaTeX and have been trying to get my head around WinEdt lately. I have a few questions
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.
General ⇒ Margin Size and Columns
NEW: TikZ book now 40% off at Amazon.com for a short time.

- 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¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Margin Size and Columns
Ah thanks alot I've got it working now.
I've used
To get the right page setup.
And
To get the 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}