Cosmos College(PU Affiliated) Proposal Project Report
Author
Keshav
Last Updated
před 2 lety
License
Creative Commons CC BY 4.0
Abstract
General Template of Cosmos Project Proposal Report.
\title{Cosmos College Project Proposal}
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
%Package for Justifying page-----------------------------
\usepackage{ragged2e}
%Margin Define--------------------------------------------
\usepackage{geometry}
\geometry{
a4paper,
left=0.5in,
right=0.5in,
top=1in,
bottom=1in,
}
%Line Spacing------------------------------------------------
\usepackage{setspace}
\setstretch{1.5}
\usepackage{biblatex}
\addbibresource{source.bib}
%For using image--------------------------------------------
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{url,hyperref}
%for using "&" as non math function----------------------------
\usepackage{amsmath}
%-------------------Beginning of the Documents------------------
\begin{document}
\include{coverpage}
\justifying
\pagenumbering{roman}
\input{sec/abstract}
%Table of Contents---------------------------------------------
\newpage
{
\setlength{\parskip}{0em}
\renewcommand\contentsname{TABLE OF CONTENTS} % This will change heading text
\tableofcontents \addcontentsline{toc}{section}{TABLE OF CONTENTS}
}
%List of Figures---------------------------------------------
\newpage
{
\listoffigures
\addcontentsline{toc}{section}{LIST OF FIGURES}
}
%Chapters and Sections---------------------------------------------
\newpage
\clearpage
\pagenumbering{arabic}
\input{sec/Chapter-1}
\newpage
\input{sec/Chapter-2}
\newpage
\input{sec/Chapter-3}
\newpage
\input{sec/Chapter-4}
\newpage
%\bibliographystyle{ieeetr}
%\bibliography{ref}
\nocite{*}
\printbibliography
\end{document}