-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuickMathNote.tex
63 lines (48 loc) · 1.55 KB
/
QuickMathNote.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
\documentclass[22pt,a4paper,notitlepage]{article}
%% Use your favourite packages here
\usepackage[margin=0.8in]{geometry}
\usepackage[T1]{fontenc}
\usepackage{times}
\usepackage{amsmath, amssymb, amsfonts}
\usepackage{braket}
\usepackage{cancel}
\usepackage{hyperref}
\begin{document}
\title{Title of your quick note}
\author{Your Name}
\date{\today} % Can also use a custom date
\maketitle
%%=================Start====================%%
\noindent % Start line without indentation
Write sentences using words and equations such as $x^3 - y = 0$. We can also write standalone equations like below
$$ H \ket{\Psi}
= E \ket{\Psi}.
$$
\\ % Line break without indentation
More words.
%% Use sections to organize
\section{Section with numbers}
\subsection{Subsection with numbers}
\section*{Section without numbers}
\subsection*{Subsection without numbers}
Use \textit{align} to write multiple lines of equations as below
\begin{align*}
\ket{\Psi}
&:= \sum_{\mu} \: c_{\mu} \ket{\mu},
\\
E
&= \frac{\braket{\Psi | H | \Psi}}{\braket{\Psi|\Psi}},
\end{align*}
more words just below equations.
\\ \\ % Line break without indentation
We can also include equation numbers.
\begin{align}
\ket{\Psi}
&:= \sum_{\mu} \: c_{\mu} \ket{\mu},
\\
E
&= \frac{\braket{\Psi | H | \Psi}}{\braket{\Psi|\Psi}}.
\end{align}
\noindent
We can create hyperlinks using \href{https://www.overleaf.com/learn/latex/Hyperlinks}{hyperref} and also \cancel{strikethrough} using the \textit{cancel} package.
\end{document}