-
Notifications
You must be signed in to change notification settings - Fork 266
/
slambook-en.tex
93 lines (77 loc) · 2.04 KB
/
slambook-en.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
% !Mode:: "TeX:UTF-8"
\documentclass[a4paper,9pt,openleft]{book}
\input{latex/package}
\input{latex/option}
\input{latex/hack}
% suggested format in Springer
%i.Title page
%ii.Author details and Springer copyright page
%iii.Dedication page
%iv.Acknowledgments
%v.Preface
%vi.Table of contents
%vii.Introduction
\begin{document}
% Title page
\title{Introduction to Visual SLAM\\From Theory to Practice}
\author{Xiang Gao and Tao Zhang}
\date{\today}
\frontmatter
\maketitle
% Author info & copy right
% dedication page
\clearpage
\begin{center}
\thispagestyle{empty}
\vspace*{\fill}
\usefont{T1}{LobsterTwo-LF}{bx}{it}
\Large \emph{To my beloved Lilian and Shenghan}
\vspace*{\fill}
\end{center}
% ack
\include{chapters/acknowledge}
% preface
%\include{chapters/preface-en}
\include{chapters/preface}
\tableofcontents
% TODO
% 统一用语:例如key frame -> keyframe, front end -> frontend, real time->real-time,等等
% \textbf 强调的地方用斜体为佳
% 检查表述和语法
% 代码的英文版分支
% 标题单词使用大写字符
% 用语:关键帧 keyframe
% 前端/后端 frontend/backend
% 视觉里程计 visual odometry
% 定位 localization 不要positioning
% 回环检测 loop closure或loop closing
% 最小二乘 least-square 要连字线
\mainmatter
\addtocontents{toc}{\protect\setcounter{tocdepth}{2}}
\hypersetup{bookmarksdepth=2}
\part{Fundamental Knowledge}
\include{chapters/whatSlam}
\include{chapters/rigidBody}
\include{chapters/lieGroup}
\include{chapters/cameraModel}
\include{chapters/nonlinearOptimization}
\part{SLAM Technologies}
\include{chapters/vo1}
\include{chapters/vo2}
\include{chapters/backend1}
\include{chapters/backend2}
\include{chapters/loopclosure}
\include{chapters/mapping}
\include{chapters/designTracker}
\include{chapters/state-of-the-art}
\appendix
\addtocontents{toc}{\protect\setcounter{tocdepth}{0}}
\hypersetup{bookmarksdepth=2}
\input{chapters/gaussian-distribution}
\input{chapters/matrix-derivatives}
\backmatter
\small
\bibliographystyle{ieeetr}
\bibliography{ref}
\newpage
\end{document}