-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmainrep.tex
191 lines (149 loc) · 6.46 KB
/
mainrep.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
%%% Time-stamp: <mainrep.tex 19:57, 17 Jul 2016 by P Sunthar>
%%% $Log:$
% This document describes how to use iitbreport style
%********************************************************************
%\documentclass[11pt,a4paper,openright]{report}
\documentclass[twoside]{iitbreport}
%% Default spacing: 1.5
%% Default font size: 12pt
%% Default font: txfonts (similar to times new roman)
%% Selectively comment out sections that you want to be left out but
%% maintaining the page numbers and other \ref
\includeonly{%
intro/introduction,
lit/literature,
expt/experimental,
rnd/results,
dec,abs,pub,ack
}
%%% Some commonly used packages (make sure your LaTeX installation
%%% contains these packages, if not ask your senior to help installing
%%% the packages)
\usepackage{booktabs}
\graphicspath{{expt/}}
%%% Macro definitions for Commonly used symbols
\newcommand{\Rey}{\ensuremath{\mathrm{Re}}}
\newcommand{\avg}[1]{\ensuremath{\overline{#1}}}
\newcommand{\tenpow}[1]{\ensuremath{\times 10^{#1}}}
\newcommand{\pder}[2]{\ensuremath{\frac{\partial#1}{\partial#2}}}
% Referencing macros
\newcommand{\Eqref}[1]{Equation~\eqref{#1}}
\newcommand{\Tabref}[1]{Table~\ref{#1}}
\newcommand{\Figref}[1]{Figure~\ref{#1}}
\newcommand{\Appref}[1]{Appendix~\ref{#1}}
\begin{document}
%%********************************Frontmatter***********************
% In frontmatter everything comes with roman numbering
\pagenumbering{roman}
\setcounter{page}{1}
%*******************************************************************
% Title Page
%*******************************************************************
\title{Essential \LaTeX\ Templates for Report Writing}
\author{My name}
%% Print the date. Today's date comes by default, change it here to
%% other date format, if required:
%\date{\today}
%\date{10 Mar 2016}
%% The type of the report can be set here
\reporttype{A Seminar Report}
%\reporttype{A Thesis}
%\reporttype{A Dissertation}
%\reporttype{A Project Report}
%% Name of the degree
\degree{Doctor of Philosophy}
%\degree{Master of Technology}
%% Department/Centre Name
\dept{Department of Chemical Engineering}
%% Supervisor and cosupervisor/excosupervisor are not essential parts
%% of a report title page, as it is your report!
%% But if you **have** to put it uncomment these
%\supervisor{Supervisor name}
%\cosupervisor{Co-super name}
%\excosupervisor{External Supervisor}
%% Roll number
\rollnum{Roll No. ....}
\maketitle
%*******************************************************************
% Copyright Page
%*******************************************************************
%\mycopyright
%*******************************************************************
% Dedication Page
%*******************************************************************
\dedication[Dedicated to \ldots]
%\addintoc{Dedication}
%*******************************************************************
% Certificate Page
%*******************************************************************
%\makecertificate[change title name]{report type}
\makecertificate{seminar report}
%\makecertificate{thesis}
%\makecertificate{dissertation}
%\makecertificate{project report}
%\addintoc{Certificate}
%*******************************************************************
% Approval Sheet
%*******************************************************************
%\makeapproval{thesis}
%\makeapproval{dissertation}
%*******************************************************************
% Declaration
%*******************************************************************
\include{dec}
%\addintoc{Declaration}
%******************************************************************
% Abstract
%******************************************************************
\include{abs}
%******************************************************************
% Contents list
%******************************************************************
%\figurespagefalse
%\tablespagefalse
\makecontents % Creats toc, lof, and lot
%******************************************************************
% Notations
%******************************************************************
\notations[4cm]{List of Symbols}
%%********************************Mainmatter***********************
% In mainmatter everything comes with arabic numbering
\cleardoublepage
\setcounter{page}{1}
\pagenumbering{arabic}
%******************************************************************
% Chapters
%******************************************************************
\include{intro/introduction}
\include{lit/literature}
\include{expt/experimental}
\include{rnd/results}
%****************************************************************
% Appendices
%****************************************************************
%% Additional, supporting material, such as codes, derivations, etc., can be placed in the appendix
\appendix
\chapter{Supporting Material}
%******************************************************************
% Bibliography or References
%******************************************************************
\bibliography{mylit}
%*******************************************************************
% List of publications
%******************************************************************
\include{pub}
%*******************************************************************
% Acknowledgements
%*******************************************************************
\include{ack}
%*******************************************************************
% About author
%*******************************************************************
\colophon % remove this command while using this file.
% GAME OVER
%*******************************************************************
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: