-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
58 lines (40 loc) · 1.27 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
56
57
%!TEX TS-program = pdflatex
\documentclass[a4paper,11pt,twoside=semi]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[pdftex]{graphicx}
\graphicspath{{./fig/}}
\DeclareGraphicsExtensions{.pdf,.jpeg,.png}
\usepackage{hyperref}
\usepackage{mdframed}
\usepackage[margin=3cm]{geometry}
\usepackage[automark,headsepline]{scrlayer-scrpage}
\clearpairofpagestyles
\cfoot[\pagemark]{\pagemark}
\lehead{\headmark}
\rohead{\headmark}
\pagestyle{scrheadings}
\newcommand{\fastquote}[1]{``#1''}
\newcommand{\comment}[2]{\begin{mdframed}[backgroundcolor=yellow]\footnotesize \textbf{#1} (comment) \\ #2 \end{mdframed}}
\newcommand{\todo}[2]{\begin{mdframed}[backgroundcolor=red]\footnotesize \textbf{TODO $\rightarrow$ #1:} #2 \end{mdframed}}
\setlength{\parskip}{0.3cm}
\title{OpenState Specification}
\subtitle{Version 1.0 (beta)}
\author{}
\date{June 2015}
\begin{document}
\maketitle
\pagenumbering{Roman}
\tableofcontents
\newpage
\clearpage
\pagenumbering{arabic}
\include{introduction}
\include{glossary}
\include{pipeline}
\include{flow_states}
\include{global_states}
\include{protocol}
\section*{Credits}
Spec contributions, in alphabetical order: Giuseppe Bianchi, Marco Bonola, Antonio Capone, Carmelo Cascone, Luca Pollini, Davide Sanvito
\end{document}