From 0831211e7262fefd6d2f0697e589c447e42fa7a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Sch=C3=A4rtl?= <andreas@schaertl.me> Date: Tue, 16 Jun 2020 17:50:22 +0200 Subject: [PATCH] report: start section on components --- doc/report/Makefile | 3 ++- doc/report/components.tex | 17 +++++++++++++++++ doc/report/figs/components.png | 1 + doc/report/report.tex | 7 ++++++- 4 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 doc/report/components.tex create mode 120000 doc/report/figs/components.png diff --git a/doc/report/Makefile b/doc/report/Makefile index b896579..1bf998c 100644 --- a/doc/report/Makefile +++ b/doc/report/Makefile @@ -1,4 +1,5 @@ -TEX_SOURCES = report.tex abstract.tex intro.tex endpoints.tex applications.tex +TEX_SOURCES = report.tex abstract.tex intro.tex components.tex \ + endpoints.tex applications.tex report.pdf: $(TEX_SOURCES) references.bib chronic pdflatex $< diff --git a/doc/report/components.tex b/doc/report/components.tex new file mode 100644 index 0000000..b069a0a --- /dev/null +++ b/doc/report/components.tex @@ -0,0 +1,17 @@ +\section{Components} + +With various ULO/RDF files in place we have the aim of making the +underlying data available for use with applications. For this, we +should first make out the various components that might be involved in +such a system. As a guide, figure~\ref{fig:components} illustrates +the various components and their interplay. + +\begin{figure}[]\begin{center} + \includegraphics{figs/components} + \caption{Components involved in the \emph{ulo-storage} system.}\label{fig:components} +\end{center}\end{figure} + +We will now give an overview over all involved components. Each +component will later be discussed in more detail, this section serves +only for the reader to get a general understanding of the developed +infrastructure and its topology. diff --git a/doc/report/figs/components.png b/doc/report/figs/components.png new file mode 120000 index 0000000..aed0d5f --- /dev/null +++ b/doc/report/figs/components.png @@ -0,0 +1 @@ +../../components.png \ No newline at end of file diff --git a/doc/report/report.tex b/doc/report/report.tex index a32c441..a4e210a 100644 --- a/doc/report/report.tex +++ b/doc/report/report.tex @@ -1,12 +1,16 @@ \documentclass[a4paper]{scrartcl} -\usepackage[utf8]{inputenc} \usepackage{amsmath} +\usepackage{caption} +\usepackage{float} \usepackage{geometry} +\usepackage{graphicx} \usepackage{hyperref} \usepackage{lipsum} \usepackage{multicol} +\usepackage{subcaption} \usepackage{verbatim} +\usepackage[utf8]{inputenc} \usepackage[ backend=biber, natbib=true, @@ -43,6 +47,7 @@ } \input{intro.tex} +\input{components.tex} \input{endpoints.tex} \input{applications.tex} -- GitLab