-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.tex
132 lines (102 loc) · 4.55 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
\documentclass[12pt]{report}
\usepackage{parskip}
\usepackage{adjustbox}
\usepackage{amstext}
%\usepackage{amsmath}
\begin{document}
\begin{titlepage}
\includegraphics[height=2.25cm,keepaspectratio]{lab.png}\hfill \includegraphics[height=2.25cm,width = 3.75cm]{pes.png}
\begin{center}
\vspace*{1cm}
\textbf{\Large{PES Innovation Lab}}
\vspace{0.3cm}
\text{\Large{Project Report}}
\vspace{0.1cm}
\text{\Large{Summer Internship 2022}}
\vspace{0.8cm}
\text{\huge{Insert Project title}}
\vspace{0.8cm}
\text{\large{Interns}}
\vspace{0.2cm}
\begin{tabular}{c c}
\textbf{Name} &
\textbf{SRN} \\[0.5cm]
\ {Intern-1} & {SRN-1} \\
\ {Intern-2} & {SRN-2} \\
\ {Intern-3} & {SRN-3} \\
\end{tabular}
\vspace{0.5cm}
\text{\large{Mentors}}
\vspace{0.2cm}
\begin{tabular}{c c}
\textbf{Name} &
\textbf{SRN} \\[0.5cm]
\ {Mentor-1} & {SRN-1} \\
\ {Mentor-2} & {SRN-2} \\
\end{tabular}
\vfill
\vspace{0.5cm}
PES Innovation Lab\\
PES University\\
100 Feet Ring Road,\\
BSK III Stage,\\
Bangalore - 560085
\end{center}
\end{titlepage}
\begin{abstract}
A short description of your project, solution method/approach and results. Do not exceed 100 words.
\end{abstract}
\tableofcontents
%\listoffigures
%\listoftables
\chapter{Introduction}
Length: [0.5 to 2 pages ]
Introduce the reader to the problem/domain. Write about the issues that your project addresses/improves/solves. Write about use-cases for your project.
\section{Problem Statement}
A formal statement of what you are trying to achieve. \\
You can conclude the introduction by writing how the rest of the report is organised.
\chapter{Literature Survey/Related Work}
Length: [1-3 pages].
Are there existing solutions to your problem? If yes, elaborate in a few lines. You can also write about the theory/concepts associated with your project. Cite related work \cite{wiki:latex}. You can conclude this section by stating how your work is novel/different from the related work you have just described. For each paper or link that you mention here, please include a short summary of the resource as well as how the resource contributed to your project.
\chapter{Main Body}
This is the heart of your report. It describes your project. It can be more than one chapter/section. For example : 'System model', 'methodology', 'solution method', 'approach'. Include diagrams, flow charts, algorithms etc. if relevant. Make sure you refer to all figures and tables that you include in the text. Like this: In Figure \ref{solvay}, the IQ level is over 9000! (Read in Vegeta voice.)
%template for figure
\begin{figure}[ht]
\includegraphics[width =\columnwidth]{solvay.jpg}
\caption{Some inspiration}
\label{solvay}
\end{figure}
\section{Hardware and Software Requirements}
What hardware/software did you use? Can be lists or tables if you used many. Mention version numbers of software. Mention stats. of the computer you did your project on.
\section{Artifacts}
What are the Inputs that your system requires? In an Ideal Scenario, what are the outputs? How do certain inputs impact the output, if there exists such a mapping? Do add in a workflow diagram of the system to ease explanation and improve understanding.
\chapter{Results and Discussion}
Include tables (see Table \ref{XYComparison} for a template), figures and plots to represent your results if possible. What were the key outcomes? Do they match with expected results? Why/why not? Discuss and explain results where possible. Talk about challenges faced and the limitations of the present implementation if any.
%template for table
\begin{table}[ht]
\label{XYComparison}
\begin{center}
\begin{tabular} {l|l|l} %left aligned
\hline
\hline
\textbf{Criteria} & \textbf{X} & \textbf{Y} \\
\hline
A & B & C \\
D & B & C \\
\hline
\hline
\end{tabular}
\end{center}
\caption{Comparison of X and Y}
\end{table}
\chapter{Conclusions and Future Work}
A short paragraph about the conclusions you have drawn. Feel free to change the formatting and sizes of your figures/tables. In conclusion, your report should a) give the reader an idea of what you did b) allow them to understand and replicate your results.
%Please make sure you keep a log of all the resources you have used. This includes websites, tutorials, videos, papers or even blogs can be cited.
\bibliographystyle{ieeetr}
\bibliography{bibmil.bib}
\appendix
\chapter{sample appendix header 1}
%\label{app_1}
Appendices:
Proofs, links to your code and any other misc. info that doesn?t fit in nicely into other sections.
\end{document}