-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangular_cheat_sheet.tex
More file actions
58 lines (52 loc) · 1.22 KB
/
angular_cheat_sheet.tex
File metadata and controls
58 lines (52 loc) · 1.22 KB
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
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{fullpage}
\usepackage{fancyhdr}
\usepackage{url}
\usepackage{color}
\usepackage{textcomp}
\usepackage{geometry}
\usepackage{courier}
\geometry{
top=1.0in, % <-- you want to adjust this
inner=0.5in,
outer=0.5in,
bottom=1.0in,
headheight=4ex, % <-- and this
headsep=3ex, % <-- and this
}
\renewcommand{\familydefault}{\sfdefault}
\addtolength{\parskip}{\baselineskip}
\pdfpagewidth 8.5in
\pdfpageheight 11in
\pagestyle{fancy}
\newcommand{\urlwofont}[1]{\urlstyle{same}\url{#1}}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\lhead{\leftmark}
\chead{}
\rhead{\rightmark}
\lfoot{}
\cfoot{Page \thepage}
\rfoot{}
\hypersetup{
colorlinks=false,
linkcolor=blue,
citecolor=black,
filecolor=black,
urlcolor=blue
}
\begin{document}
\section{AngularJS}
Useful builtin directives
Useful builtin filters
Useful angular.* functions
(mostly from docs.angularjs.org/api)
cheat sheet for making modules and routes
cheat sheet for making services
cheat sheet for making filters
cheat sheet for making directives
(mostly from docs.angularjs.org/guide)
\end{document}