-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.tex
61 lines (43 loc) · 1.1 KB
/
main.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
\documentclass{standalone}
%~~~~ SPACING
\usepackage{setspace}
%~~~~ FONT AND GRAMMAR CHECKER
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
%~~~~ TEXT COLOR
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
%~~~~ HYPERLINK
\usepackage{url}
\usepackage[colorlinks=true,
citecolor=green!50!black,
linkcolor=cyan!50!blue]{hyperref}
%~~~~ MATH
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{xfrac}
\usepackage{cancel}
\usepackage{mathrsfs} % $\mathscr{L}$
\usepackage{dsfont} % ssm matrices
%~~~~ FIGURES & TABLES
\usepackage{graphicx}
\usepackage{multirow, adjustbox}
\usepackage{subcaption}
% ~~~~ TIKZ
\usepackage{tikz, circuitikz}
\usetikzlibrary{shapes,
arrows,
calc,
patterns,
decorations.pathmorphing,
decorations.markings}
\usepackage{3dplot} %requires 3dplot.sty to be in same directory, or in your LaTeX installation
\newcommand{\repopic}[1]{\input{drawings/#1}}
\begin{document}
% \repopic{cantilever}
% \repopic{neural_net}
% \repopic{sarsa}
% \repopic{ocean}
% \repopic{shark}
\repopic{curiosity_mastcam}
\end{document}