mirror of
https://github.com/cupcakearmy/master-thesis.git
synced 2026-04-02 11:55:30 +00:00
Clear History
This commit is contained in:
70
thesis/src/lib/acronyms.sty
Normal file
70
thesis/src/lib/acronyms.sty
Normal file
@@ -0,0 +1,70 @@
|
||||
|
||||
\usepackage{acro}
|
||||
|
||||
\acsetup{
|
||||
make-links
|
||||
}
|
||||
|
||||
\DeclareAcronym{dtn}{
|
||||
short = DTN,
|
||||
long = Delay/Disruption-Tolerant Networking \cite{RFC5050,RFC9171} ,
|
||||
}
|
||||
\DeclareAcronym{tcp}{
|
||||
short = TCP ,
|
||||
long = Transmission Control Protocol \cite{RFC0793,RFC7323} ,
|
||||
}
|
||||
\DeclareAcronym{udp}{
|
||||
short = UDP ,
|
||||
long = User Datagram Protocol \cite{RFC0768},
|
||||
}
|
||||
\DeclareAcronym{ltp}{
|
||||
short = LTP ,
|
||||
long = Licklider Transmission Protocol \cite{RFC5326} ,
|
||||
}
|
||||
\DeclareAcronym{lldp}{
|
||||
short = LLDP ,
|
||||
long = Link Layer Discovery Protocol \cite{7433915} ,
|
||||
}
|
||||
\DeclareAcronym{ns3}{
|
||||
short = ns-3 ,
|
||||
long = ns-3 Network Simulator \footnote{\url{https://www.nsnam.org/}} ,
|
||||
}
|
||||
\DeclareAcronym{omnet}{
|
||||
short = OMNeT++ ,
|
||||
long = Open Modeling Network Simulator \footnote{\url{http://omnetpp.org/}} ,
|
||||
}
|
||||
\DeclareAcronym{inet}{
|
||||
short = INET ,
|
||||
long = INET \footnote{\url{https://inet.omnetpp.org/}} ,
|
||||
}
|
||||
\DeclareAcronym{bp}{
|
||||
short = BP ,
|
||||
long = Bundle Protocol \cite{RFC5050,RFC9171} ,
|
||||
}
|
||||
\DeclareAcronym{ops}{
|
||||
short = OPS ,
|
||||
long = Opportunistic Protocol Simulator ,
|
||||
}
|
||||
\DeclareAcronym{cgr}{
|
||||
short = CGR ,
|
||||
long = Contact Graph Routing \cite{burleigh2011contact} ,
|
||||
}
|
||||
\DeclareAcronym{dns}{
|
||||
short = DNS,
|
||||
long = Domain Name System \cite{RFC1034,RFC1035} ,
|
||||
}
|
||||
|
||||
\DeclareAcronym{ip}{
|
||||
short = IP,
|
||||
long = Internet Protocol \cite{RFC0791} ,
|
||||
}
|
||||
|
||||
\DeclareAcronym{cni}{
|
||||
short = CNI,
|
||||
long = Container Network Interface \footnote{\url{https://www.cni.dev/}} ,
|
||||
}
|
||||
|
||||
\DeclareAcronym{oci}{
|
||||
short = OCI,
|
||||
long = Open Container Initiative \footnote{\url{https://opencontainers.org/}} ,
|
||||
}
|
||||
22
thesis/src/lib/metadata.sty
Normal file
22
thesis/src/lib/metadata.sty
Normal file
@@ -0,0 +1,22 @@
|
||||
\faculty{Faculty of Computer Science}
|
||||
\institute{Institute of Systems Architecture}
|
||||
\chair{Chair of Computer Networks}
|
||||
|
||||
\date{\today}
|
||||
\title{A Simulator for Delay- and Disruption-tolerant Networking based on Kubernetes}
|
||||
|
||||
\thesis{master}
|
||||
\graduation[M.Sc.]{Master of Science}
|
||||
|
||||
\author{
|
||||
Niccolo Borgioli
|
||||
\matriculationnumber{XXX}%
|
||||
\matriculationyear{XXX}
|
||||
\dateofbirth{XXX}%
|
||||
\placeofbirth{XXX}%
|
||||
}
|
||||
|
||||
\supervisor{Dr. -Ing. Marius Feldmann}
|
||||
\professor{Prof. Dr. rer. nat. habil. Dr. h. c. Alexander Schill}
|
||||
|
||||
\maketitle
|
||||
20
thesis/src/lib/requirements.sty
Normal file
20
thesis/src/lib/requirements.sty
Normal file
@@ -0,0 +1,20 @@
|
||||
% Copied from: https://ghost.tweakblogs.net/blog/720/requirement-list-in-latex.html
|
||||
|
||||
\newcommand{\reqitem}[1]{
|
||||
$R_{#1}$
|
||||
}
|
||||
|
||||
\newcommand{\reqinit}{
|
||||
\newcounter{reqcountbackup}
|
||||
\newcounter{reqcount}
|
||||
\renewcommand{\thereqcount}{\reqitem{\arabic{reqcount}}}
|
||||
}
|
||||
|
||||
\newcommand{\reqlist}[1]{
|
||||
\begin{list}{\thereqcount}{\usecounter{reqcount}}
|
||||
\setcounter{reqcount}{\value{reqcountbackup}}
|
||||
#1
|
||||
\setcounter{reqcountbackup}{\value{reqcount}}
|
||||
\end{list}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user