IS_Project_2_template
Author
Tony Mogoa
Last Updated
před 2 lety
License
Creative Commons CC BY 4.0
Abstract
A simple document template for IS Project Theses for Bachelor of Informatics and Computer Science offered at Strathmore University.
\documentclass[12pt, a4paper]{article}
\usepackage{fontspec}
\usepackage[english]{babel}
\usepackage{sectsty}
\usepackage{natbib}
\usepackage{parskip}
\usepackage{graphicx}
\usepackage{titlesec}
\usepackage{titletoc}
\usepackage[nottoc]{tocbibind}
% margins
\usepackage[top=1in, bottom=1in, right=1in, left=1in]{geometry}
\usepackage{tocloft}
% un comment below make ToC entires into links
% \usepackage{hyperref}
% for line height
\usepackage{setspace}
% \usepackage{etoolbox}
%% For dummy text
\usepackage[english]{babel}
\usepackage{blindtext}
\counterwithin{figure}{section}
\renewcommand\cftloftitlefont{\normalfont\ssecfnt\bfseries}
\renewcommand{\cftlottitlefont}{\normalfont\ssecfnt\bfseries}
\renewcommand{\cfttoctitlefont}{\normalfont\ssecfnt\bfseries}
% \setlength{\cftsecnumwidth}{65pt}%
% \renewcommand{\cftchappresnum}{\chaptername\hspace{5pt}}
% \renewcommand{\cftchapaftersnum}{\hspace{5pt}}
%set font of section including toc, lof, lot
\renewcommand{\cftsecfont}{\normalfont\ssecfnt}
% List of equations
\newcommand{\listequationsname}{\normalfont\ssecfnt\bfseries List of Equations}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par}
\newcommand{\secfnt}{\fontsize{12}{14}}
\newcommand{\ssecfnt}{\fontsize{12}{14}}
%%% FORMAT TITLES %%%
\titleformat{\section}
{\normalfont\secfnt\bfseries\centering}{Chapter~\thesection:}{1em}{}
\titleformat{\subsection}
{\normalfont\secfnt\bfseries}{\thesubsection}{1em}{}
%%% END FORMAT TITLES %%%
%%% FORMAT TITLES IN TOC %%%
\titlecontents{section}[3.5em]{\normalfont}%
{\contentslabel[Chapter \thecontentslabel:]{3em}\qquad}%numbered
{\hskip-3em}%numberless
{\titlerule*[0.75pc]{.}\contentspage}%
\renewcommand{\cftsecaftersnum}{\hspace{5pt}}
%%% END FORMAT TITLES IN TOC %%%
\graphicspath{ {./images/} }
%%% CHANGE NAME OF TOC %%%
\addto\captionsenglish{
\renewcommand{\contentsname}{Table of Contents}
}
%%% END CHANGE NAME OF TOC %%%
%%% SET MAIN FONT FAMILY %%%
\setmainfont{Times New Roman}
%%% END SET MAIN FONT FAMILY %%%
\setstretch{1.5}
% \renewcommand{\cftsec}{}
\begin{document}
\begin{center}
\textbf{Your Proposal Title\\
\vspace{70pt}
Your Name\\
Adm. No.
ICS 4A\\
\vspace{70pt}
Supervisor Name\\
His/Her Name\\
\vspace{70pt}
Submitted in Partial Fulfilment of the Requirements of the Bachelor of Science in Informatics and Computer Science at Strathmore University\\
\vspace{70pt}
School of Computing and Engineering Science\\
Strathmore University\\
Nairobi, Kenya\\
\vspace{50pt}
August 2022
}
\end{center}
\thispagestyle{empty}
\clearpage
\pagenumbering{roman}
\section*{Declaration and Approval}
\addcontentsline{toc}{section}{Declaration and Approval}
I declare that this work has not been previously submitted and approved for the award of a
degree by this or any other University. To the best of my knowledge and belief, the research
proposal contains no material previously published or written by another person except where
due reference is made in the research proposal itself.
\vspace{3cm}
Student Name: Your Name\\
Admission Number: Adm No.\\
Student Signature: \underline{\hspace{4cm}} Date: \underline{\hspace{4cm}}
\vspace{3cm}
The proposal of Your Name has been reviewed and approved by Supervisor Name.\\
Supervisor Signature: \underline{\hspace{4cm}} Date: \underline{\hspace{4cm}}
\clearpage
\section*{Acknowledgement}
\addcontentsline{toc}{section}{Acknowledgement}
\blindtext
\clearpage
\section*{Abstract}
\addcontentsline{toc}{section}{Abstract}
\Blindtext
\clearpage
\begin{center}
\tableofcontents
\clearpage
\end{center}
%
\begin{center}
\listoffigures
\clearpage
\end{center}
%
\begin{center}
\listoftables
\clearpage
\end{center}
%
\begin{center}
\addcontentsline{toc}{section}{List of Equations}
\listofmyequations
\clearpage
\end{center}
%
\addcontentsline{toc}{section}{List of Abbreviations}
\section*{List of Abbreviations}
\clearpage
\pagenumbering{arabic}
\section{Introduction}
\subsection{Background Information}
\subsection{Problem Statement}
\subsection{Objectives}
\subsubsection{General Objectives}
\subsubsection{Specific Objectives}
\subsection{Justification}
\subsection{Scope and Limitations}
\clearpage
\section{Literature Review}
\subsection{Introduction}
\subsection{Objective 1}
\subsection{Related Works}
\subsection{Gaps in Related Works}
\subsection{Conceptual Framework}
\subsection{Objective 2}
\clearpage
\bibliography{bibliography}
\bibliographystyle{apalike}
\clearpage
\section*{Appendices}
\addcontentsline{toc}{section}{Appendices}
\end{document}