-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.tex
More file actions
172 lines (135 loc) · 4.25 KB
/
report.tex
File metadata and controls
172 lines (135 loc) · 4.25 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
\documentclass{tudelft-report}
%% Set up the bibliography
\usepackage{biblatex}
\usepackage[utf8]{inputenc}
\usepackage{enumitem}
\usepackage{titlesec} % For title formatting
\usepackage{comment}
\usepackage{tabularx}
\usepackage{float}
\usepackage{hyperref}
\usepackage[l3]{csvsimple}
\addbibresource{report.bib}
\usepackage{xifthen}
\usepackage{svg}
%% Additional packages and commands
\usepackage{parskip}
\setlist{itemsep=-2pt} % Reducing white space in lists slightly
\renewcommand{\deg}{\si{\degree}\xspace} % Use \deg easily, everywhere
%% JL added this to fix long names spilling over the margin.
\emergencystretch=2em
\titlespacing*{\section}
{0pt}{4.0ex plus 1ex minus .2ex}{2.2ex plus .2ex}
\titlespacing*{\subsection}
{0pt}{3.5ex plus 1ex minus .2ex}{1.8ex plus .2ex}
\titlespacing*{\subsubsection}
{0pt}{3.0ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
pdftitle={Overleaf Example},
pdfpagemode=FullScreen,
}
\urlstyle{same}
% Define the instruction box style
\specialcomment{instruction}{\begingroup\color{red}\itshape}{\endgroup}
\excludecomment{instruction} % Exclude all instructions from printing
% Contruct styles borrowed from Ian Horrocks' DL macros
\newcommand{\nsprefix}[1]{%
\penalty0\hskip0pt\ifthenelse{\equal{#1}{}}%
{}%
{%
{\footnotesize\textsf{#1}:}%
}%
}
\newcommand{\cname}[2]{%
\nsprefix{#1}%
\textsf{#2}%
}
\newcommand{\opname}[2]{%
\nsprefix{#1}%
\textsl{#2}%
}
%%\newcommand{\dpname}[1]{\textsf{#1}}
\newcommand{\dpname}[2]{%
\nsprefix{#1}%
\textsl{#2}%
}
\newcommand{\iname}[2]{%
\nsprefix{#1}%
\textsf{#2}%
}
%% Annotation property
\newcommand{\apname}[2]{%
\nsprefix{#1}%
\textsf{#2}%
}
%% Datatype
\newcommand{\dtname}[2]{%
\nsprefix{#1}%
\textsf{#2}%
}
%% ----------------------------------------------------------------------
%% Begin of document + Frontmatter (Roman page numbering)
%% ----------------------------------------------------------------------
\begin{document}
\frontmatter
%% Define the main parameters
\title{IOF Core Patterns}
\subtitle{A compendium of Semantic data Patterns based on IOF Core}
\author{IOF Core working group}
\subject{Draft} % Cover only
\affiliation{NIST} % Cover only
\coverimage{figures/College-Cover-Page.pdf} % Aspect ratio of 2:3 (portrait) recommended
\definecolor{title}{HTML}{fee7dd} % Color for cover title
% \makecover
\input{frontmatter/title-report}
\input{frontmatter/preface}
\input{frontmatter/summary}
\tableofcontents
%\listoffigures
%\listoftables
\input{frontmatter/glossary}
%% ----------------------------------------------------------------------
%% Mainmatter (Arabic page numbering)
%% ----------------------------------------------------------------------
\mainmatter
\input{mainmatter/introduction}
%\input{mainmatter/chapter-4} % Create file to add
%% ----------------------------------------------------------------------
%% Aspects and scenerios
%% ----------------------------------------------------------------------
\textit{
Only add aspects that are main chapters. Each scenario will be a section with TOC entry only with the scenario name. Compile scenarios under the aspect chapters below.
}
\input{mainmatter/space-location}
\input{mainmatter/time}
\input{mainmatter/objects-artifact-material}
\input{mainmatter/assembly-component}
\input{mainmatter/person-agent}
\input{mainmatter/system-organization}
\input{mainmatter/roles}
\input{mainmatter/changes}
\input{mainmatter/process-event}
\input{mainmatter/state-situation}
\input{mainmatter/information}
\input{mainmatter/planning}
\input{mainmatter/measurement}
\input{mainmatter/utility}
%% Prevent urls running into margins in bibliography
\setcounter{biburlnumpenalty}{7000}
\setcounter{biburllcpenalty}{7000}
\setcounter{biburlucpenalty}{7000}
%% Add bibliography
\printbibliography[heading=bibintoc,title=References]
%% ----------------------------------------------------------------------
%% Appendix (Letters for chapters)
%% ----------------------------------------------------------------------
\appendix
\input{appendix/instructions}
\input{appendix/scenario-template}
\input{appendix/chapter-latex-instruction}
\end{document}