-
Notifications
You must be signed in to change notification settings - Fork 1
/
tutorial.tex
115 lines (90 loc) · 2.84 KB
/
tutorial.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
\documentclass[11pt,chicago.sty]{article}
%\documentclass[11pt]{article}
\usepackage{makeidx} % allows index generation
\usepackage{graphicx} % standard LaTeX graphics tool
% when including figure files
\usepackage{multicol} % used for the two-column index
\usepackage{multirow} % used for multi-rowed index
\usepackage[bottom]{footmisc}% places footnotes at page bottom
\usepackage{sidecap}
\usepackage{wrapfig}
\usepackage{hyperref}
% \usepackage{nsf}
% \pagestyle{nsf}
\usepackage{enumitem}
\usepackage{framed}
\makeindex
\newcommand{\runinhead}[1]{\vspace{+5pt}\noindent \textbf{#1:}\hspace{.5em}}
\usepackage{subfigure}
\usepackage{graphicx}
\usepackage{color}
\usepackage{colortbl}
\usepackage{tabularx}
%% FA COMMANDS
\setlength{\fboxsep}{1em}
\newcommand{\spacecont}[1]{\ensuremath{\mathscr{#1}}}
\newcommand{\spacedisc}[1]{\ensuremath{\mathit{#1}}}
\usepackage{algorithm}
% \usepackage{algpseudocode}
%\usepackage{mathptmx} % selects Times Roman as basic font
\usepackage{helvet} % selects Helvetica as sans-serif font
\usepackage{courier} % selects Courier as typewriter font
\usepackage{type1cm} % activate if the above 3 fonts are
\usepackage{listings}
\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}
\usepackage{array}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\lstset{frame=tb,
language=c++,
aboveskip=3mm,
belowskip=3mm,
showstringspaces=false,
columns=flexible,
basicstyle={\footnotesize\ttfamily},
numbers=none,
numberstyle=\tiny\color{gray},
keywordstyle=\color{blue},
commentstyle=\color{dkgreen},
stringstyle=\color{mauve},
breaklines=true,
breakatwhitespace=true,
tabsize=3
}
\input{defs}
\makeatletter
%\renewcommand\section{\@startsection{section}{1}{\z@}%
% {-2.0ex \@plus -1ex \@minus -.3ex}%
% {.7ex \@plus.1ex}%
% {\normalfont\large\bfseries}}
\makeatother
%\usepackage[sc]{mathpazo}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsbsy}
\linespread{1.05}
\usepackage[left=3cm,top=2.5cm,right=3cm,bottom=3.3cm,nohead]{geometry}
\title{DART: Dynamic Animation and Robotics Toolkit}
\date{}
%\author{C. Karen Liu \and Jeongseok Lee \and Michael X. Grey}
\begin{document}
\vspace{-180pt}
\maketitle
%\begin{center}
%\end{center}
%\pagenumbering{gobble}
\tableofcontents
\input{intro}
\input{kinematics}
\input{dynamics}
\input{others}
%\input{lessons}
\pagebreak
\thispagestyle{empty}
\pagestyle{empty}
\bibliographystyle{unsrt}
\bibliography{refs.bib}
\end{document}