\documentclass[12pt]{article}
\usepackage{parskip}
\usepackage{tikz}
\usepackage{amsmath}
\usepackage{amssymb}
\title{LaTeX Workshop - What is it?}
\author{Arshaan}
\date{January 23, 2015}
\begin{document}
\maketitle
\begin{abstract}
Things about things
\end{abstract}
\section{Setting up the Document}
\section{Getting Started with Titles and Sections}
"Parskip"allows you to skip using 2 Backslashes at the end of each line.
There are various packages, that allow you to do cool things.
You must begin and end the documents or modules
There is sections, and then there is subsections.
\subsection{This is a subsection!}
You can use the * character to give arguments specific attributes.
\section{How to Make Lists}
\begin{itemize}
\item something
\item another thing
\begin{itemize}
\item this is a nested list
\item you can go as far as you want with this
\end{itemize}
\end{itemize}
\begin{enumerate}
\item this is number 1
\item this is number 2
\end{enumerate}
\section{Images}
\includegraphics{picture.png}
\section {Basic Equations}
add another math package
use dollar-sign to use math package
$1+1=2$
A fraction an be expressed as $0.5$ or $\dfrac{1}{2}$.
I spent \$100! Today!
distance $= \sqrt{x^2+y^2}$
We have a variable $a$ that has parameters $x$ and $y$, indicated as $a_x$ and $a_y$.
$P$ is the set of all real numbers. Which is also like saying, $P \in \mathbb {R} $.
\section{Fun formatting things}
\subsection{Text formatting}
\subsection{Page formatting}
\end{document}