#Very Simple
\documentclass{article}
\begin{document}
small is beautiful
\end{document}
#Textmate Layout
%
% untitled
%
% Created by Steven Harms on 2007-02-11.
% Copyright (c) 2007 Steven G. Harms. All rights reserved.
%
\documentclass{article}
% Use utf-8 encoding for foreign characters
\usepackage[utf8]{inputenc}
% Setup for fullpage use
\usepackage{fullpage}
\setlength{\columnsep}{20pt}
% Uncomment some of the following if you use the features
%
% Running Headers and footers
%\usepackage{fancyheadings}
% Multipart figures
\usepackage{subfigure}
% More symbols
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{latexsym}
% Surround parts of graphics with box
\usepackage{boxedminipage}
% Package for including code in the document
\usepackage{listings}
% If you want to generate a toc for each chapter (use with book)
\usepackage{minitoc}
% This is now the recommended way for checking for PDFLaTeX:
\usepackage{ifpdf}
\usepackage{multicol}
\ifpdf
\usepackage[pdftex]{graphicx}
\else
\usepackage{graphicx}
\fi
\title{A LaTeX Demonstration}
\begin{document}
\maketitle
When in the Course of human events it becomes necessary for one people to dissolve the political bands which have connected them with another and to assume among the powers of the earth, the separate and equal station to which the Laws of Nature and of Nature's God entitle them, a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation.
\vskip 1 cm
$\frac{(x+2)^2\cdot(x-2)^{-3\rho_larry}}{x^2+3b+c}$
\vskip 1 cm
We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America.
\setlength{\columnsep}{20pt}
\begin{multicols}{2}
\setlength{\columnsep}{50pt}
This is the declaration of independence:\\
When in the Course of human events it becomes necessary for one people to dissolve the political bands which have connected them with another and to assume among the powers of the earth, the separate and equal station to which the Laws of Nature and of Nature's God entitle them, a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation.
\end{multicols}
\end{document}
#Multicol
Columns
To use multiple columns in your document, use the "multicol" package. Just add it to your opening declaration like so:
\usepackage{palatino, url, multicol}
Then, to use multiple columns, invoke it like this:
\begin{multicols}{2}{
Department of English\\
P.O. Box 117310\\
University of Florida\\
Gainesville, FL, 32611-7310\\
(352) 392-6650
111 My Home address\\
Gainesville, FL 32611\\
(352) 555-1111 (H)\\
(352) 555-2222 (M)
}
\end{multicols}
That will make a two-column area in your document.
You can control the space between the columns with the \columnsep command. Invoke it before you invoke columns like this: \setlength{\columnsep{2in}}