generated from VS-Code-Templates/DevContainer-Latex-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paper.tex
66 lines (42 loc) · 1.38 KB
/
paper.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
\documentclass[12pt, letterpaper, titlepage]{report}
% \special{papersize=8.5in,11in}
% Import setup file with includes
\input{setup.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ---- Paper Specific Setup ----- %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% \thispagestyle{plain} % Makes title page have numbers
\pagestyle{plain} % Makes other pages have numbers
\bibliography{ref} % Add bibliography
\title{Development of a Customizable Bio-Mechanical Actuated Knee Orthosis for Exoskeletons Thesis}
% {\footnotesize to be used with Microsoft VSCode and Latex}
\author{\textbf{Alex C. Tacescu}}
% \affil{
% {Masters Thesis in Robotics Engineering} \\
% {Robotics Engineering Department} \\
% {Worcester Polytechnic Institute}
% }
\date{May 2021}
\makeatletter
\begin{document}
% Make Title Page
% \maketitle
\input{sections/title.tex}
\doublespacing
\input{sections/abstract.tex}
\input{sections/acknowledgements.tex}
% % Affiliations
% % Make Table of Contents
\tableofcontents
\listoffigures
\listoftables
\input{sections/intro.tex}
\input{sections/background.tex}
\input{sections/goals.tex}
\input{sections/kneedesign.tex}
\input{sections/knee_params.tex}
\input{sections/conclusion.tex}
% Print Bibliography
\printbibliography[heading=bibintoc]
\input{Appendix/appendix.tex}
\end{document}