Skip to content

Instantly share code, notes, and snippets.

@sorrell
Created February 19, 2012 03:58
Show Gist options
  • Save sorrell/1861866 to your computer and use it in GitHub Desktop.
Save sorrell/1861866 to your computer and use it in GitHub Desktop.
Latex intro (3)
\documentclass{article}
\newcommand\myEQ{x_0^5 + x_1 ^4}
\newcommand\voneBra{\left[\begin{array}{rr} 1 & 1 \end{array}\right]} %[1 1]
%Begin Hadamard
\newcommand\Hadamard{\frac{1}{\sqrt{2}}
\left[
\begin{array}{rr}
1 & 1 \\
1 & -1
\end{array}
\right]}
%End Hadamard
\title{My First Document}
\author{Nick}
\date{today}
\begin{document}
$\myEQ$
\\-------\\
\[ \myEQ\]
\\-------\\
\begin{equation}
\myEQ
\end{equation}
\\-------\\
\begin{eqnarray*}
\myEQ &=& e^{i\pi} \\
&=& -1
\end{eqnarray*}
\\-------\\
$\Hadamard$
\\-------\\
$\voneBra$
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment