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
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Work Package Description %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{workpackage}{TEST WORK PACKAGE}
\label{wp:test} %change and use appropriate description
%%%%%%%%%%%%%%%%%% TOP TABLE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Data for the top table
\wpstart{1} %Starting Month
\wpend{36} %End Month
\wptype{Activity type} %RTD, DEM, MGT, or OTHER
% Person Months per participant (required, max 7, * for leader)
% syntax: \personmonths{Participant number}{value} (not wp leader)
% or \personmonths{Participant short name}{value} (not wp leader)
% \personmonths*{Participant number}{value} (wp leader)
% for example:
\personmonths{UoP2}{8}
\personmonths*{UoP3}{12}
\personmonths{UoC}{3}
% etc.
\makewptable % Work package summary table
% Work Package Objectives
\begin{wpobjectives}
This work package has the following objectives:
\begin{enumerate*}
\item To develop ....
\item To apply this ....
\item etc.
\end{enumerate*}
\end{wpobjectives}
% Work Package Description
\begin{wpdescription}
% Divide work package into multiple tasks.
% Use \wptask command
% syntax: \wptask{leader}{contributors}{start-m}{end-m}{title}{description}
Description of work carried out in WP, broken down into tasks, and
with role of partners list. Use the \texttt{\textbackslash wptask} command.
\wptask{UoC}{UoC}{1}{12}{Test}{
\label{task:wp3test}
Here we will test the WP Task code.
}
\wptask{UoC}{UoC}{6}{9}{Integrate}{
\label{task:wp3integrate}
In this task UZH will integrate the work done in ~\ref{task:wp3test}.
}
\wptask{UoP3}{All other}{9}{12}{Apply}{
Here all the WP participants will apply the results to...
}
\paragraph{Role of partners}
\begin{description*}
\item[Participant short name] will lead Task~\ref{task:wp3integrate}.
\item[UoC] will..
\end{description*}
\end{wpdescription}
% Work Package Deliverable
\begin{wpdeliverables}
% Data for the deliverables and milestones tables
% syntax: \deliverable[delivery date]{nature}{dissemination
% level}{description}
%
% nature: R = Report, P = Prototype, D = Demonstrator, O = Other
% dissemination level: PU = Public, PP = Restricted to other
% programme participants (including the Commission Services), RE =
% Restricted to a group specified by the consortium (including the
% Commission Services), CO = Confidential, only for members of the
% consortium (including the Commission Services).
%
% \wpdeliverable[date]{R}{PU}{A report on \ldots}
\wpdeliverable[36]{UoC}{R}{PU}{Report on the definition of the model
specifications.}\label{dev:wp3specs}
\wpdeliverable[12]{UoP3}{R}{PU}{Report on Feasibility study for the model
implementation.}\label{dev:wp3implementation}
\wpdeliverable[24]{UoP2}{R}{PU}{Prototype of model
implementation.}\label{dev:wp3prototype}
\end{wpdeliverables}
\end{workpackage}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "proposal-main"
%%% End:
|