Use the setspace package, then set the spacing you want:
\usepackage{setspace}
\doublespacing
Other options:
I wanted page numbering that referenced total number of pages (e.g., "Page 1 of 4"). It took me a long time to figure this out, but this is how I got it to work:
\usepackage{fancyhdr,lastpage}
\pagestyle{fancy}
\fancyhf{}
\rfoot{\scriptsize{Page \thepage\ of \pageref{LastPage}}}
\renewcommand\headrulewidth{0pt} % Removes funny header line
Enclose the tabular environment within the "center" environment, like so:
\begin{center} % put inside center environment
\begin{tabular}{l l l l}
label 1 & label 2 & label 3 & label 4 \\
\hline % put a line under headers
item 1 & item 2 & item 3 & item 4 \\
...
\end{tabular}
\end{center}
vim -R /path/to/main.tex /path/to/article.tex /path/to/beamer.tex
Remember to replace "/path/to" with the relevant path to the file.
Note: The option "-R" opens these files read-only, so you don't accidentally write over the templates.
\title{<++>}
\author{<++>}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
<++>
\end{frame}
\begin{frame}
<++>
\end{frame}
\begin{frame}
<++>
\end{frame}
\end{document}
Note the various instances of "<++>" in the document. These act as "placeholders" within the document to make editing much faster. Press ctrl-j. If all goes well, this should take your cursor to the first instance of the "<++>" (inside the title bracket) while simultaneously deleting these placeholder symbols, thereby letting you quickly enter the title. Once you are finished with the title, press ctrl-j again; now you should be within the author brackets. Enter your author, then press ctrl-j once more. Now you should be within the first slide. See how this works? This will allow you to quickly fill in the template, without having to type in the repetitive header and frame environment codes, and without having to move your cursor all over the document by hand.
esc, then typing :next. Edit this document the same way: the only thing you need to enter here is the new filename of the altered "main.tex" file. Press ctrl-j to take you directly there.