Latex headers - Adam Oberman Math

Latex headers

Some headers I find useful

%% Latex headers which simplify the document preparation process
 
%% Graphics Related
\usepackage{graphicx}
% lets you build in subfigures
\usepackage{subfigure}
% put all the images in a different directory
\graphicspath{{figures/}}
 
 
%% PDF related
% syncs with PDF
\usepackage{pdfsync}
% puts in links in the PDF based on links in the document
\usepackage[pdftex]{hyperref} 
 
%% Shows the labels in equations on the compiled document
\usepackage[notref,notcite]{showkeys}