Edinburgh Napier Coursework Report
Författare
Simon Wells, Sam Serrels, Kevin Chalmers
Last Updated
för 5 år sedan
Licens
Creative Commons CC BY 4.0
Sammanfattning
A template for School of Computing reports at Edinburgh Napier University.
A template for School of Computing reports at Edinburgh Napier University.
% #######################################
% ########### FILL THESE IN #############
% #######################################
\def\mytitle{Coursework Report}
\def\mykeywords{}
\def\myauthor{Cool Student}
\def\contact{4008000@napier.ac.uk}
\def\mymodule{Advanced Web Technologies (SET09103)}
% #######################################
% #### YOU DON'T NEED TO TOUCH BELOW ####
% #######################################
\documentclass[10pt, a4paper]{article}
\usepackage[a4paper,outer=1.5cm,inner=1.5cm,top=1.75cm,bottom=1.5cm]{geometry}
\twocolumn
\usepackage{graphicx}
\graphicspath{{./images/}}
%colour our links, remove weird boxes
\usepackage[colorlinks,linkcolor={black},citecolor={blue!80!black},urlcolor={blue!80!black}]{hyperref}
%Stop indentation on new paragraphs
\usepackage[parfill]{parskip}
%% Arial-like font
\usepackage{lmodern}
\renewcommand*\familydefault{\sfdefault}
%Napier logo top right
\usepackage{watermark}
%Lorem Ipusm dolor please don't leave any in you final report ;)
\usepackage{lipsum}
\usepackage{xcolor}
\usepackage{listings}
%give us the Capital H that we all know and love
\usepackage{float}
%tone down the line spacing after section titles
\usepackage{titlesec}
%Cool maths printing
\usepackage{amsmath}
%PseudoCode
\usepackage{algorithm2e}
\titlespacing{\subsection}{0pt}{\parskip}{-3pt}
\titlespacing{\subsubsection}{0pt}{\parskip}{-\parskip}
\titlespacing{\paragraph}{0pt}{\parskip}{\parskip}
\newcommand{\figuremacro}[5]{
\begin{figure}[#1]
\centering
\includegraphics[width=#5\columnwidth]{#2}
\caption[#3]{\textbf{#3}#4}
\label{fig:#2}
\end{figure}
}
\lstset{
escapeinside={/*@}{@*/}, language=C++,
basicstyle=\fontsize{8.5}{12}\selectfont,
numbers=left,numbersep=2pt,xleftmargin=2pt,frame=tb,
columns=fullflexible,showstringspaces=false,tabsize=4,
keepspaces=true,showtabs=false,showspaces=false,
backgroundcolor=\color{white}, morekeywords={inline,public,
class,private,protected,struct},captionpos=t,lineskip=-0.4em,
aboveskip=10pt, extendedchars=true, breaklines=true,
prebreak = \raisebox{0ex}[0ex][0ex]{\ensuremath{\hookleftarrow}},
keywordstyle=\color[rgb]{0,0,1},
commentstyle=\color[rgb]{0.133,0.545,0.133},
stringstyle=\color[rgb]{0.627,0.126,0.941}
}
\thiswatermark{\centering \put(336.5,-38.0){\includegraphics[scale=0.8]{logo}} }
\title{\mytitle}
\author{\myauthor\hspace{1em}\\\contact\\Edinburgh Napier University\hspace{0.5em}-\hspace{0.5em}\mymodule}
\date{}
\hypersetup{pdfauthor=\myauthor,pdftitle=\mytitle,pdfkeywords=\mykeywords}
\sloppy
% #######################################
% ########### START FROM HERE ###########
% #######################################
\begin{document}
\maketitle
\begin{abstract}
%Replace the lipsum command with actual text
\lipsum[2]
\end{abstract}
\textbf{Keywords -- }{\mykeywords}
\section{Introduction}
\paragraph{Referencing}
You should cite References like this: \cite{Keshav}. The references are saved in an external .bib file, and will automatically be added to the bibliography at the end once cited.
\figuremacro{h}{placeholder}{ImageTitle}{ - Some Descriptive Text}{1.0}
\section{Formatting}
Some common formatting you may need uses these commands for \textbf{Bold Text}, \textit{Italics}, and \underline{underlined}.
\subsection{LineBreaks}
Here is a line
Here is a line followed by a double line break.
This line is only one line break down from the above, Notice that latex can ignore this
We can force a break \\ with the break operator.
\subsection{Maths}
Embedding Maths is Latex's bread and butter
{\centering \Large \(
J = \begin{bmatrix}
\frac{\delta e}{\delta \theta _0}
\frac{\delta e}{\delta \theta _1}
\frac{\delta e}{\delta \theta _2}
\end{bmatrix}
= e_{current} - e_{target}
\)\par}
\subsection{Code Listing}
You can load segments of code from a file, or embed them directly.
\begin{lstlisting}[caption = Hello World! in c++]
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
std::cin.get();
return 0;
}
\end{lstlisting}
\subsection{PseudoCode}
\begin{algorithm}[h]
\For{$i = 0$ \KwTo $100$}{
print\_number = true\;
\If{i is divisible by 3}{
print "Fizz"\;
print\_number = false\;
}
\If{i is divisible by 5}{
print "Buzz"\;
print\_number = false\;
}
\If{print\_number}{
print i\;
}
print a newline\;
}
\caption{FizzBuzz}
\end{algorithm}
\section{Conclusion}
\bibliographystyle{ieeetr}
\bibliography{references}
\end{document}