Skip to content

Instantly share code, notes, and snippets.

@Zsailer
Last active November 19, 2015 00:44
Show Gist options
  • Save Zsailer/28fe6bad800601b03a7a to your computer and use it in GitHub Desktop.
Save Zsailer/28fe6bad800601b03a7a to your computer and use it in GitHub Desktop.
Latex template for mathy paper supplement documents
%% Document type
\documentclass[12pt]{article}
%% Start of preamble
\usepackage{amsmath} % Advanced math extension
\usepackage{amssymb} % Advanced math symbols
\usepackage{array} % Advanced tables
%\usepackage{bm} % Allows bold greek letters in math mode
%\usepackage{caption} % Allows customization of caption appearance
\usepackage[margin=1in]{geometry} % Management of document margins and size
\usepackage{graphicx} % Allows you to insert graphic files to document
\usepackage{indentfirst} % Indent the first paragraph of new section
%\usepackage{multicol} % Multiple columns in text
%\usepackage{natbib} % Citation options and styles
\usepackage{setspace} % Set the spacing between text
\usepackage{subcaption} % Allows subcaptions and multiple floating figures
\begin{document}
%% Uncomment if you want to include a title page
%\title{}
%\author{}
%\date{}
%\maketitle
Does this work?
\begin{equation}
\alpha
\end{equation}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment