[Tex/LaTex] How to get a blank column

blank-pagetwo-column

I'm trying to create a program (i.e. the paper kind you hand out) in LaTeX.

I've got \documentclass[landscape, letterpaper] and I'm running into problems with the columns. I've tried multicol, minipage, and twocolumn, but I can't get it to do what I want.

+-----+-----+
|     |     |
|blank|stuff|
|     |     |
+-----+-----+

I want to have the left side blank, and stuff on the right hand side (text on top, image, and text on bottom) all centered on the right side.

When I used twocolumn, I couldn't get the LHS to be blank and put anything on the right side. Minipages seem to completely fail at what I want, simply centering everything on the page.

I haven't been able to find any template to do what I want, because searching for "LaTeX program template" provides me all sorts of results that do not what I need. Here's an example of what I mean:

\documentclass[twocolumn, landscape,letterpaper]{article}
\usepackage[pdftex]{graphicx}


\begin{document}
\pagestyle{empty}
\vfill
\clearpage
\newpage
    \begin{center}
        \textit{December 8, 2012}
    \end{center}
\end{document}

Produces this:
wrong side!

I want that to appear on the right hand side.

Best Answer

The following probably does what you want:

enter image description here

\documentclass{article}
\usepackage{fullpage}                           % Makes the page margins smaller to a predefined one.
\usepackage{xcolor}
\usepackage{multicol,lipsum}
                                                % Added a few parameters to play around with
\columnseprule=0.4pt                            % Adds a rule for aesthetics.
\columnsep=2cm                                  % Increases the width that separates the column.
\renewcommand{\columnseprulecolor}{\color{red}} % Changes the default \normalcolor of the column separation rule.
\begin{document}
\begin{multicols}{2}
\vspace*{\textheight}
\columnbreak
\lipsum[1-2]
\end{multicols}
\end{document}
Related Question