
KJSCE Report Writing
Author:
Ninad Mehendale
Last Updated:
4년 전
License:
Creative Commons CC BY 4.0
Abstract:
Template for KJSCE somaiya vidyavihar university

\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
%%% 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]{kjscereport}
%% 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 Project Report}
%\reporttype{A Thesis}
%\reporttype{A Dissertation}
%\reporttype{A Project Report}
%% Name of the degree
%\degree{Doctor of Philosophy}
%\degree{Master of Technology}
\degree{Bachelor of Technology}
%% Department/Centre Name
\dept{Department of Electronics 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: