thesis: add glossary and work on introduction&research
This commit is contained in:
parent
7660ae0c9b
commit
779c628b5a
3 changed files with 68 additions and 16 deletions
|
@ -6,6 +6,7 @@
|
|||
\usepackage{fancyhdr}
|
||||
\usepackage{geometry}
|
||||
\usepackage{multirow,tabularx,tabu}
|
||||
\usepackage[xindy]{glossaries}
|
||||
|
||||
\newcommand{\topic}{A Declarative And Reproducible Approach To Application Deployment Via Container Images}
|
||||
|
||||
|
@ -43,8 +44,8 @@
|
|||
|
||||
\newcommand{\hsp}{\hspace{20pt}}
|
||||
\titleformat{\chapter}[hang]{\vspace{-2cm}\Huge\bfseries}{\thechapter\hsp}{0cm}{}
|
||||
|
||||
\makeatletter
|
||||
|
||||
\renewcommand\paragraph{\startsection{paragraph}{4}{\z}%
|
||||
{-3.25ex\plus -1ex \minus -.2ex}%
|
||||
{0.0001pt \plus 0.2ex}%
|
||||
|
@ -55,6 +56,40 @@
|
|||
{\normalfont\normalsize\bfseries}}
|
||||
\makeatother
|
||||
|
||||
\makenoidxglossaries
|
||||
\newglossaryentry{Linux} {
|
||||
name = Linux,
|
||||
description = {
|
||||
is a generic term referring to the family of Unix-like
|
||||
computer operating systems that use the Linux kernel
|
||||
},
|
||||
plural=Linuces
|
||||
}
|
||||
|
||||
\newglossaryentry{computer} {
|
||||
name = Computer,
|
||||
description = {
|
||||
is a programmable machine that receives input,
|
||||
stores and manipulates data, and provides
|
||||
output in a useful format
|
||||
}
|
||||
}
|
||||
|
||||
\newglossaryentry{apci} {
|
||||
name=Application Program Container Image,
|
||||
description={is an archive file that contains all of the necessary binaries that are needed to execute an application and a manifest file that that contains metadata about the application. Alternatively to containing all the required binary files, the manifest file can declare dependencies to other application container images, which must then be available at runtime to execute the contained application}.
|
||||
}
|
||||
|
||||
\newglossaryentry{apcr} {
|
||||
name=Application Program Container Runtime,
|
||||
description={is an application program or a set thereof that understands how to run the software inside an \gls{apci}}.
|
||||
}
|
||||
|
||||
\newglossaryentry{} {
|
||||
name=Application Program Container Runtime,
|
||||
description={is an application program or a set thereof that understands how to run the software inside an \gls{apci}}.
|
||||
}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\pagenumbering{roman}
|
||||
|
@ -67,29 +102,26 @@
|
|||
\newcounter{roman_pagenumbers} % save page number
|
||||
\setcounter{roman_pagenumbers}{\value{page}}
|
||||
|
||||
|
||||
\pagestyle{fancy}
|
||||
\fancyhf{}
|
||||
\addtolength{\headwidth}{\marginparsep}
|
||||
\headheight=15pt
|
||||
\pagenumbering{arabic}
|
||||
\fancyfoot[R]{\thepage{}}
|
||||
\fancyhead[L]{\small \autorlinit, \autorminit, \autorsinit}
|
||||
\fancyhead[R]{\nouppercase{\rightmark}}
|
||||
\pagestyle{fancy}
|
||||
\fancyhf{}
|
||||
\addtolength{\headwidth}{\marginparsep}
|
||||
\headheight=15pt
|
||||
\fancyfoot[R]{\thepage{}}
|
||||
\fancyhead[L]{\small \autorlinit, \autorminit, \autorsinit}
|
||||
\fancyhead[R]{\nouppercase{\rightmark}}
|
||||
|
||||
\pagenumbering{arabic}
|
||||
\pagestyle{fancy}
|
||||
%TODO \include{acknowledgements}
|
||||
|
||||
|
||||
\tableofcontents
|
||||
|
||||
%TODO \printnomenclature[3cm]
|
||||
|
||||
\chapter{Preface}
|
||||
This dissertation is original, unpublished, independent work by the author, \authorOne.
|
||||
|
||||
\part{Introduction}
|
||||
\include{introduction}
|
||||
\include{parts/introduction/introduction}
|
||||
|
||||
\part{Research}
|
||||
\include{parts/research/research}
|
||||
|
@ -103,4 +135,5 @@
|
|||
%TODO \lstlistoflistings
|
||||
\listoffigures
|
||||
%TODO \printbibliography
|
||||
|
||||
\end{document}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue