Skip to content
Snippets Groups Projects
Commit 6bcc21c1 authored by James D'Alton's avatar James D'Alton
Browse files

re-added accidentally deleted report

parent 52a51f0c
No related branches found
No related tags found
No related merge requests found
Showing
with 138 additions and 0 deletions
%% ----------------------------------------------------------------
%% Introduction.tex
%% ----------------------------------------------------------------
\chapter{Introduction} \label{Chapter:Introduction}
Example Introduction
\ No newline at end of file
This is the abstract
\ No newline at end of file
%% ----------------------------------------------------------------
%% FutureWork.tex
%% ----------------------------------------------------------------
\chapter{Future Work} \label{Chapter: Future Work}
It works.
%% ----------------------------------------------------------------
%% Bibliography.tex
%% ----------------------------------------------------------------
\chapter{Bibliography} \label{Chapter: Bibliography}
It works.
%% ----------------------------------------------------------------
%% Appendices.tex
%% ----------------------------------------------------------------
\chapter{Appendix A: Photos} \label{appendix1}
This is an appendix
\chapter{Appendix B: Code Listings} \label{appendix2}
This is an appendix
\ No newline at end of file
%% ----------------------------------------------------------------
%% Chapter1.tex
%% ----------------------------------------------------------------
\chapter{Project Goals} \label{Chapter:one}
Example Chapter
\ No newline at end of file
%% ----------------------------------------------------------------
%% Chapter2.tex
%% ----------------------------------------------------------------
\chapter{Background and Literature Review} \label{Chapter:two}
%% ----------------------------------------------------------------
%% Chapter3.tex
%% ----------------------------------------------------------------
\chapter{Designs} \label{Chapter:three}
\ No newline at end of file
%% ----------------------------------------------------------------
%% Chapter4.tex
%% ----------------------------------------------------------------
\chapter{Implementation} \label{Chapter:four}
\ No newline at end of file
%% ----------------------------------------------------------------
%% Chapter5.tex
%% ----------------------------------------------------------------
\chapter{Testing and Software Validation} \label{Chapter:five}
\ No newline at end of file
%% ----------------------------------------------------------------
%% Chapter6.tex
%% ----------------------------------------------------------------
\chapter{Results and Analysis} \label{Chapter:six}
\ No newline at end of file
%% ----------------------------------------------------------------
%% Chapter7.tex
%% ----------------------------------------------------------------
\chapter{Evaluation} \label{Chapter:seven}
\ No newline at end of file
%% ----------------------------------------------------------------
%% Chapter8.tex
%% ----------------------------------------------------------------
\chapter{Project Management} \label{Chapter:eight}
It works.
%% ----------------------------------------------------------------
%% Conclusions.tex
%% ----------------------------------------------------------------
\chapter{Conclusions} \label{Chapter: Conclusions}
It works.
TARGET = master
latex:
pdflatex $(TARGET).tex
bibtex:
bibtex $(TARGET).tex
spell_%:
aspell check $%.tex
report:
pdflatex $(TARGET).tex
bibtex $(TARGET)
pdflatex $(TARGET).tex
pdflatex $(TARGET).tex
all: report view count clean
view:
evince $(TARGET).pdf &
count:
texcount -inc -html -v -sum $(TARGET).tex > results.html
firefox results.html &
clean:
rm *.aux *.out *.fls *.log *.lol *.lof *.fdb_latexmk *.lot *.toc
rm *.pdf
# ecslatex
ECS LaTeX Template reconfigured for compilation in newer versions of TeX
To use, make LaTeX files and include them in `master.tex`. Three chapters have been included as an example.
This document uses IEEE Referencing (through `IEEETran.bst`) - This is available from [here](https://www.ieee.org/conferences_events/conferences/publishing/templates.html)
This is based on the original `ecsgdp.cls`, by [Steve R Gunn](https://www.ecs.soton.ac.uk/people/srg), and which can be found [here](http://users.ecs.soton.ac.uk/srg/softwaretools/document/)
## Usage
To compile this, simply open up `master.tex` with your favourite LaTeX compiler (I use `pdflatex`) and compile.
You can edit the master BibTeX Bibliography file at `master.bib`.
Remember, as with all LaTeX stuff, if you're using a Bibliography, compile using LaTeX, then BibTeX, then LaTeX then LaTeX again (see `Makefile`) so that your references are all inserted nicely.
If you want to use the `Makefile`, simply `cd` into this repository directory and type `make`.
% Generated by IEEEtran.bst, version: 1.12 (2007/01/11)
\begin{thebibliography}{}
\providecommand{\url}[1]{#1}
\csname url@samestyle\endcsname
\providecommand{\newblock}{\relax}
\providecommand{\bibinfo}[2]{#2}
\providecommand{\BIBentrySTDinterwordspacing}{\spaceskip=0pt\relax}
\providecommand{\BIBentryALTinterwordstretchfactor}{4}
\providecommand{\BIBentryALTinterwordspacing}{\spaceskip=\fontdimen2\font plus
\BIBentryALTinterwordstretchfactor\fontdimen3\font minus
\fontdimen4\font\relax}
\providecommand{\BIBforeignlanguage}[2]{{%
\expandafter\ifx\csname l@#1\endcsname\relax
\typeout{** WARNING: IEEEtran.bst: No hyphenation pattern has been}%
\typeout{** loaded for the language `#1'. Using the pattern for}%
\typeout{** the default language instead.}%
\else
\language=\csname l@#1\endcsname
\fi
#2}}
\providecommand{\BIBdecl}{\relax}
\BIBdecl
\end{thebibliography}
%% ----------------------------------------------------------------
%% ECS.bib
%% ----------------------------------------------------------------
@MISC{Gunn:2001:pdflatex,
author = {S.R. Gunn},
title = {PDFLaTeX Instructions},
url = {http://www.ecs.soton.ac.uk/~srg/softwaretools/document/}
}
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment