-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.tex
153 lines (122 loc) · 3.32 KB
/
team.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
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
% Description of activities for the project team
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Set a class and general configuration
\documentclass[onecolumn,a4paper,12pt]{article}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Set variables with the title, authors, etc.
% Edit the values and they will propagate to the document and head/foot
\include{information.tex}
\newcommand{\DocumentTitle}{%
Project team roles and responsibilities
}
\renewcommand{\TitleShort}{Team roles and responsibilities}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Import the required packages
\usepackage[utf8]{inputenc}
\usepackage[TU]{fontenc}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{hyperref}
\usepackage{fancyhdr}
\usepackage{geometry}
\usepackage{microtype}
\usepackage{siunitx}
\usepackage{xcolor}
% improved urls with proper hyphenation
\usepackage{xurl}
% To control the style of section titles
\usepackage{titlesec}
% Use a different font
\usepackage[scaled=0.9,sfdefault]{notomath}
% Control the font size
\usepackage{anyfontsize}
\usepackage{setspace}
% To get the number of pages in the document
\usepackage{lastpage}
\usepackage{lipsum}
\usepackage{ragged2e}
% To control hyphenation for individual blocks of text
\usepackage{hyphenat}
% To add line numbers
\usepackage{reledmac}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Configuration of the document
\geometry{%
left=30mm,
right=15mm,
top=15mm,
bottom=15mm,
headsep=0mm,
headheight=0mm,
footskip=7mm,
includehead=true,
includefoot=true
}
% Control line and table row spacing
\onehalfspacing
\renewcommand{\arraystretch}{1.5}
% Custom colors
\definecolor{darkgray}{gray}{0.4}
\definecolor{mediumgray}{gray}{0.5}
\definecolor{lightgray}{gray}{0.9}
\definecolor{mediumblue}{HTML}{2060c2}
\definecolor{lightblue}{HTML}{f7faff}
% Make urls use the same font as every other text
\urlstyle{same}
% Number every single line instead of every 5th line
\firstlinenum{1}
\linenumincrement{1}
% Configure hyperref and add PDF metadata
\hypersetup{
colorlinks,
allcolors=mediumblue,
pdftitle={\DocumentTitle},
pdfauthor={\PIname},
breaklinks=true,
}
% Configure header and footer
% Inspired by LaPreprint: https://github.com/roaldarbol/LaPreprint
\newcommand{\Separator}{\hspace{3pt}|\hspace{3pt}}
\newcommand{\FooterFont}{\footnotesize\color{mediumgray}}
\pagestyle{fancy}
\fancyhf{}
\lfoot{%
\FooterFont{}
\TeamShort{} (\Year)
\Separator{}
\TitleShort
}
\rfoot{%
\FooterFont{}
\FundingCall{}
\Separator{}
\thepage\space of\space \pageref*{LastPage}
}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{1pt}
\preto{\footrule}{\color{lightgray}}
\fancypagestyle{plain}{%
\fancyhf{}
\lfoot{}
\rfoot{}
\renewcommand{\footrulewidth}{0pt}
}
\begin{document}
\begin{spacing}{2}
\noindent
{\LARGE \textbf{\DocumentTitle}}
\end{spacing}
\noindent
\textbf{Project:} \Title
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Main text - EDIT HERE
\section*{Leonardo Uieda}
\lipsum[1]
\section*{Person A}
\lipsum[1]
\section*{Person B}
\lipsum[1]
\end{document}
%------------------------------------------------------------------------------