mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-09-13 04:12:19 +02:00
feat(dissertation): add abstract diagram of components
This commit is contained in:
parent
e3b1f6b222
commit
28bf5a4074
22
pub/dissertation/chapters/design.tex
Normal file
22
pub/dissertation/chapters/design.tex
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
\documentclass[../dissertation.tex]{subfiles}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\section{Abstraction}
|
||||||
|
\begin{figure}[!h]
|
||||||
|
\centering
|
||||||
|
\begin{tikzpicture} [align=center, node distance=4cm]
|
||||||
|
\node (connector) [box] {Checklist Tester Initerface};
|
||||||
|
\node (server) [box, below of=connector] {Checklist Tester Server};
|
||||||
|
\node (plugin) [box, right of=server] {Simulator Connector Plugin};
|
||||||
|
\node (formal) [box, left of=server] {Formal Method};
|
||||||
|
\node (simulator) [box, below of=plugin] {Flight Simulator};
|
||||||
|
|
||||||
|
\draw [arrow] (server) -- (connector);
|
||||||
|
\draw [arrow] (formal) -- (server);
|
||||||
|
\draw [arrow] (plugin) -- (server);
|
||||||
|
\draw [arrow] (plugin) -- (simulator);
|
||||||
|
\end{tikzpicture}
|
||||||
|
\caption{Abstract layout of components}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
\end{document}
|
Binary file not shown.
@ -11,6 +11,12 @@
|
|||||||
|
|
||||||
\usepackage{xcolor}
|
\usepackage{xcolor}
|
||||||
|
|
||||||
|
\usepackage{tikz}
|
||||||
|
\usetikzlibrary{shapes.geometric, arrows}
|
||||||
|
|
||||||
|
\tikzstyle{box} = [rectangle, minimum width=3cm, minimum height=1cm, text centered, text width=3cm, draw=black]
|
||||||
|
\tikzstyle{arrow} = [thick,<->,>=stealth]
|
||||||
|
|
||||||
% Tables
|
% Tables
|
||||||
\usepackage{xltabular}
|
\usepackage{xltabular}
|
||||||
\usepackage{booktabs}
|
\usepackage{booktabs}
|
||||||
@ -65,6 +71,7 @@ This is the acknowledgements.
|
|||||||
\chapter{Background}
|
\chapter{Background}
|
||||||
|
|
||||||
\chapter{Design/Implementation}
|
\chapter{Design/Implementation}
|
||||||
|
\subfile{chapters/design.tex}
|
||||||
|
|
||||||
\chapter{Results}
|
\chapter{Results}
|
||||||
|
|
||||||
|
0
pub/dissertation/dissertation.tex.latexmain
Normal file
0
pub/dissertation/dissertation.tex.latexmain
Normal file
Loading…
x
Reference in New Issue
Block a user