Skip to content

Commit

Permalink
Edited README, and cleared out some cruft from the tex files.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdstrowes committed Nov 8, 2011
1 parent 553c0f7 commit 25247d4
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 31 deletions.
4 changes: 2 additions & 2 deletions 10-introduction/introduction.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ \chapter{Introduction}

\note{Introductory text goes here!}

Here's a really cool paper!~\cite{strowes:2011:compact}
Here's a really cool paper!~\cite{strowes:2011:reallycool}

%==============================================================================
\section{Thesis Statement}
\label{c:intro:thesisstatement}

\input{"thesis_statement.tex"}
\input{"10-introduction/thesis_statement.tex"}
47 changes: 47 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
Glasgow Thesis Template for LaTeX.
Stephen D. Strowes, 2011.
https://github.com/sdstrowes/Glasgow-Thesis-Template


This template is built to follow the style guidelines presented in:
http://www.lib.gla.ac.uk/enlighten/theses/Thesis%20preparation%20guidelines.pdf

The example document should build correctly by running 'make'.

The University guidelines are loose in places. Primarily:

* The front-matter description provided by the University is
threadbare, and implies a lot of leeway. I do not include a
University crest, as one is not required. The front page is much
cleaner if it's text-only.

* The dissertation style is not specified. I use the IEEE transactions
style mainly because I like it, but it's entirely choice.

Beyond that, I have tried to stick to what is specified. In
particular, font sizes, page borders. I stick to the font requirements
for chapter & section headings, much as I'd like to change them.


The files are as follows:

* dissertation.tex, which includes:
- header.tex, which includes:
+ glasgowthesis.cls
+ abstract.tex
+ acknowledgements.tex

- 10-introduction/introduction.tex
+ 10-introduction/thesis_statement.tex

- AA-appendix/appendix.tex

- footer.tex


There's some stuff in the template that is not strictly necessary to
build according to the University guidelines (such as the
TLSind/TLSdel definitions used by texdiff; see
http://tex.stackexchange.com/questions/10134/ for why.)

There will be bugs, there will be errors. Please feed them back!
8 changes: 4 additions & 4 deletions bibliography/dissertation.bib
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@InProceedings{strowes:2011:compact,
BookTitle = {14th IEEE Global Internet Symposium 2011 (GI 2011)},
@InProceedings{strowes:2011:reallycool,
BookTitle = {The 14th International Jolly to Hawaii},
Month = {April},
author = {Strowes, Stephen D. and Mooney, Graham and Perkins, Colin},
title = {{Compact Routing on the Internet AS-Graph}},
author = {Strowes, Stephen D.},
title = {{YANSEYSUI: Yet Another Network Simulation Environment You Should Use Immediately}},
year = {2011},
}

11 changes: 0 additions & 11 deletions dissertation.tex
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,7 @@
% Introduction and research problem
\input{"10-introduction/introduction.tex"}

%\nocite{*}

% -----------------------------------------------------------------------------
\newpage
%% Add section to the contents table.
\addcontentsline{toc}{chapter}{Appendices}
\appendix

\input{"AA-appendix/appendix.tex"}
Expand All @@ -21,9 +16,3 @@

\input{"footer.tex"}

% % Bibliography
% \addcontentsline{toc}{chapter}{Bibliography}
% \bibliographystyle{bibliography/IEEEtran}
% \bibliography{bibliography/dissertation,bibliography/misc,bibliography/rfc,bibliography/ietf,bibliography/web}

% \end{document}
2 changes: 0 additions & 2 deletions footer.tex
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
\newpage
% Bibliography
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{IEEEtran}

\bibliography{bibliography/dissertation}


\end{document}
7 changes: 3 additions & 4 deletions header.tex
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

\documentclass[a4,oneside]{glasgowthesis}
\documentclass[oneside]{glasgowthesis}
% ^^ draft shows overfilled boxes...

\usepackage{graphics}
Expand Down Expand Up @@ -70,7 +70,7 @@
% =============================================================================
\begin{document}

\title{Compact Routing for the \\ Future Internet}
\title{A Really Awesome University Guideline-Compliant Thesis}
\author{Stephen D. Strowes}
\date{\today}

Expand All @@ -87,8 +87,7 @@

\newpage
\vspace*{1.75in}
\begin{center} Dedication.\end{center}
\begin{center} (Is what you need.)\end{center}
\begin{flushright} Dedication. (Is what you need.)\end{flushright}


%\pagenumbering{roman}
Expand Down
18 changes: 10 additions & 8 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@ all: dissertation.pdf



INTRO_FILES=./ch-introduction.tex ./10-introduction/introduction.tex
INTRO_FILES=\
./ch-introduction.tex \
./10-introduction/introduction.tex \
./10-introduction/thesis_statement.tex

APPEN_FILES=./ch-appendices.tex ./AA-appendix/appendix.tex

INPUTS=./header.tex \
./footer.tex \
./abstract.tex \
./acknowledgements.tex \
./thesis_statement.tex \
$(INTRO_FILES) \
INPUTS=./header.tex \
./footer.tex \
./abstract.tex \
./acknowledgements.tex \
$(INTRO_FILES) \
./dissertation.tex


Expand Down Expand Up @@ -71,4 +73,4 @@ ch-appendices.pdf: header.tex footer.tex $(APPEN_FILES) $(GRAPHICS) $(APPENDIX_P

# Clean -----------------------------------------------------------------------
clean:
rm -f *.dvi *.log *.aux *.toc *.ps *.pdf *.bbl *.blg *.lof
rm -f *.dvi *.log *.aux *.toc *.ps *.pdf *.bbl *.blg *.lof *.cb *.cb2 *.lot

0 comments on commit 25247d4

Please sign in to comment.