forked from k4rtik/latex-project-report-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
report.tex
50 lines (43 loc) · 1.93 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
% 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/
%
% Created by: Kartik Singhal
% BTech CSE Batch of 2009-13
% NIT Calicut
% Contact Info: [email protected]
%
% 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[pdftex]{graphicx} %for embedding images
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{url} %for proper url entries
\usepackage[bookmarks, colorlinks=false, pdfborder={0 0 0}, pdftitle={An Experimental Compiler Design Platform}, pdfauthor={Nachiappan V.}, pdfsubject={<subject here>}, pdfkeywords={<keywords here>}]{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{./abstract.tex}
\pagenumbering{roman} %numbering before main content starts
\tableofcontents
\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{./conclusion.tex}
\input{./ref.tex}
\end{document}