This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
55 lines (37 loc) · 1.51 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
% Template for articles
% Based on the ACM SIGPLAN proceedings style
% (c) Farhad Mehta 2020
%%%%%%%%%%-----TEMPLATE
\documentclass[sigplan, nonacm=true, screen=true, timestamp=true, review=false]{acmart}
% Note: Earlier versions acmart before TeXLive 2020 may not support the option `nonacm`
% There is a workaround below for this case.
% The following 4 lines are a workaround in case you are working with a version of acmart that does not support the `noasm` option.
% \settopmatter{printacmref=false}
% \setcopyright{none}
% \renewcommand\footnotetextcopyrightpermission[1]{}
% \pagestyle{plain}
%%%%%%%%%%-----CONFIGURATION
\input{configuration}
%%%%%%%%%%-----TITLEPAGE
\title{Microservices in a DevOps Context}
\subtitle{A Review of ``A Systematic Mapping Study on Microservices Architecture in DevOps''}
\author{Christoph Bühler}
\affiliation{University of Applied Science of Eastern Switzerland OST}
\affiliation{MSE Seminar ``Design Science and Empirical Software Engineering''}
\affiliation{Supervisor: Olaf Zimmermann}
\affiliation{Semester: Fall 2020}
\keywords{Design Science, Empirical Software Engineering, Microservices, DevOps, Systematic Mapping Study, Review}
%%%%%%%%%%-----DOCUMENT
\begin{document}
\input{sections/0_abstract}
\maketitle
%%%%%%%%%%-----BEGIN_CONTENT
\input{sections/1_introduction}
\input{sections/2_summary}
\input{sections/3_review}
\input{sections/4_conclusion}
%%%%%%%%%%-----BIBLIOGRAPHY
\bibliographystyle{alpha}
\bibliography{bibliography}
%%%%%%%%%%-----END_DOCUMENT
\end{document}