-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.tex
58 lines (46 loc) · 2.05 KB
/
report.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
% LaTeX Template for Project Report, Version 2.0
% (Abstracted from a Major Project Report at CSED, NIT Calicut but can be
% modified easily to use for other reports also.)
%
% Released under Creative Commons Attribution license (CC-BY)
% Info: http://creativecommons.org/licenses/by/3.0/
%
%
% It is advisable to learn the basics of LaTeX before using this template.
% A good resource to start with is http://en.wikibooks.org/wiki/LaTeX/
%
% All template fields are marked with a pair of angular brackets e.g. <title here>
% except for the ones defining citation names in ref.tex.
%
% Empty space after chapter/section/subsection titles can be used to insert text.
% Just compile this file using pdflatex after making all required changes.
\documentclass[12pt,a4paper]{report}
\usepackage{listings}
%%\usepackage{inconsolata}
\lstset{basicstyle=\fontfamily{pl}\selectfont}
\usepackage[T1]{fontenc}
\usepackage[scaled]{inconsolata}
%\lstset{basicstyle={\tiny\ttfamily},frame=l, breaklines=true}
\usepackage[pdftex]{graphicx} %for embedding images
\usepackage{url} %for proper url entries
\usepackage[bookmarks, colorlinks=false, pdfborder={0 0 0}, pdftitle={}, pdfauthor={Sharath Hari N, Sudev A C}, pdfsubject={Major Project Review}, pdfkeywords={Minix}]{hyperref} %for creating links in the pdf version and other additional pdf attributes, no effect on the printed document
%\usepackage[final]{pdfpages} %for embedding another pdf, remove if not required
\begin{document}
\renewcommand\bibname{References} %Renames "Bibliography" to "References" on ref page
%include other pages
\input{./title.tex}
%\input{./certificate.tex}
\input{./abstract.tex}
\pagenumbering{roman} %numbering before main content starts
\tableofcontents
%\listoffigures
\newpage
\pagenumbering{arabic} %reset numbering to normal for the main content
%\input{./prob-definition.tex} %objective changed to problem definition
\input{./introduction.tex} %literature survey included in this
\input{./work-done.tex}
%\input{./future-work.tex}
%\input{./conclusion.tex}
%\input{./acknow.tex}
\input{./ref.tex}
\end{document}