-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
111 lines (83 loc) · 2.59 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
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
\documentclass[12pt,a4paper,twoside,openright]{report}
\usepackage{amssymb}
\usepackage{rotating}
\usepackage{subcaption}
\PassOptionsToPackage{hyphens}{url}\usepackage[breaklinks=true]{hyperref}
\usepackage[acronym]{glossaries}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[british]{babel}
\usepackage[backend=biber,style=alphabetic,sortcites,backref,hyperref]{biblatex}
\usepackage{listings}
\usepackage{afterpage}
\usepackage{lineno}
\usepackage[left=3.0cm,right=3.0cm,top=4cm,bottom=3.5cm]{geometry}
\usepackage{titlesec}
\usepackage{caption}
\usepackage{csquotes}
\lstset{aboveskip=12pt}
%\linenumbers
\newcommand\blankpage{%
\null
\thispagestyle{empty}%
\newpage}
\newcommand{\specialcell}[2][c]{%
\begin{tabular}[#1]{@{}c@{}}#2\end{tabular}}
%% headers
\titleformat{\chapter}{\normalfont\huge}{\thechapter.}{20pt}{\huge}
\pagestyle{myheadings}
\renewcommand{\chaptermark}[1]{ \markboth{#1}{} }
\renewcommand{\sectionmark}[1]{ \markright{#1}{} }
%% bold float labels
\DeclareCaptionLabelFormat{myformat}{\textbf{#1}~\textbf{#2}}
\captionsetup{labelformat=myformat}
%% rename index with care for babel package
\addto\captionsbritish{%
\renewcommand{\contentsname}%
{Table of Contents}%
}
%% do not split long footnotes over multiple pages
\interfootnotelinepenalty=10000
%\title{Advances in Digital Research Repositories}
%\author{Adrian-Tudor P\u{a}nescu}
\input{acronyms.tex}
\makeglossaries
\bibliography{thesis}
\linespread{1.3}
\begin{document}
\pagenumbering{gobble}
\input{title.tex}
\blankpage
\include{acknowlegements}
\blankpage
\begin{abstract}
\input{abstract.tex}
\end{abstract}
\blankpage
\printglossary[type=\acronymtype,title=Abbreviations]
\tableofcontents
% ensure we start on an odd page when double-side printing
\cleardoublepage
\pagenumbering{arabic}
%\baselineskip=18pt plus1pt. % line spacing
\chapter{Introduction}
\label{ch:intro}
\input{intro.tex}
\chapter{From institutional to research repositories}
\label{ch:evolution}
\input{evolution.tex}
\chapter{Research dissemination, reuse, and licencing}
\label{ch:blockchain}
\input{blockchain.tex}
\chapter{Linked data in research repositories}
\label{ch:rdf}
\input{rdf.tex}
\chapter{Research repository migrations}
\label{ch:migration}
\input{migration.tex}
\chapter{Conclusions and future work}
\label{ch:outro}
\input{outro.tex}
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
\end{document}