├── .gitignore ├── IF-2017-Part_B.tex ├── MC16temp.tex ├── MC16temp2.tex ├── Makefile ├── README.md ├── bibliography.bib ├── doc1.tex ├── doc2.tex └── genyoungtabtikz.sty /.gitignore: -------------------------------------------------------------------------------- 1 | ## Core latex/pdflatex auxiliary files: 2 | *.aux 3 | *.lof 4 | *.log 5 | *.lot 6 | *.fls 7 | *.out 8 | *.toc 9 | 10 | ## Intermediate documents: 11 | *.dvi 12 | # these rules might exclude image files for figures etc. 13 | # *.ps 14 | # *.eps 15 | # *.pdf 16 | 17 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 18 | *.bbl 19 | *.bcf 20 | *.blg 21 | *-blx.aux 22 | *-blx.bib 23 | *.run.xml 24 | 25 | ## Build tool auxiliary files: 26 | *.fdb_latexmk 27 | *.synctex.gz 28 | *.synctex.gz(busy) 29 | *.pdfsync 30 | 31 | ## Auxiliary and intermediate files from other packages: 32 | 33 | # algorithms 34 | *.alg 35 | *.loa 36 | 37 | # amsthm 38 | *.thm 39 | 40 | # beamer 41 | *.nav 42 | *.snm 43 | *.vrb 44 | 45 | # glossaries 46 | *.acn 47 | *.acr 48 | *.glg 49 | *.glo 50 | *.gls 51 | 52 | # hyperref 53 | *.brf 54 | 55 | # listings 56 | *.lol 57 | 58 | # makeidx 59 | *.idx 60 | *.ilg 61 | *.ind 62 | *.ist 63 | 64 | # minitoc 65 | *.maf 66 | *.mtc 67 | *.mtc0 68 | 69 | # minted 70 | *.pyg 71 | 72 | # nomencl 73 | *.nlo 74 | 75 | # sagetex 76 | *.sagetex.sage 77 | *.sagetex.py 78 | *.sagetex.scmd 79 | 80 | # sympy 81 | *.sout 82 | *.sympy 83 | sympy-plots-for-*.tex/ 84 | 85 | # todonotes 86 | *.tdo 87 | 88 | # xindy 89 | *.xdy 90 | -------------------------------------------------------------------------------- /IF-2017-Part_B.tex: -------------------------------------------------------------------------------- 1 | \documentclass[a4paper,11pt]{article} 2 | 3 | \usepackage[T1]{fontenc} 4 | \usepackage[utf8]{inputenc} 5 | \usepackage{lmodern} 6 | \usepackage{eurosym} 7 | \usepackage{lastpage} 8 | \usepackage{xspace} 9 | \usepackage[margin=15mm,includehead,includefoot]{geometry} 10 | \usepackage{fancyhdr} 11 | \usepackage{booktabs} 12 | \usepackage{graphicx} 13 | \usepackage{multirow} 14 | \usepackage{array} 15 | \usepackage[usenames,dvipsnames,table]{xcolor} 16 | \usepackage{csquotes} 17 | \usepackage{pgfgantt} 18 | \usepackage[nohyperlinks,nolist]{acronym} 19 | 20 | \usepackage[compact]{titlesec} 21 | % HotFix from http://tex.stackexchange.com/a/300259/84485 22 | % Version1 of titlesec is not compatible with the latest texlive. 23 | % Either the titlesec package must be updated, or the following HotFix used: 24 | \usepackage{etoolbox} 25 | \makeatletter 26 | \patchcmd{\ttlh@hang}{\parindent\z@}{\parindent\z@\leavevmode}{}{} 27 | \patchcmd{\ttlh@hang}{\noindent}{}{}{} 28 | \makeatother 29 | 30 | \usepackage{enumitem} 31 | \usepackage[style=verbose-ibid,backend=bibtex]{biblatex} 32 | \usepackage{hyperref} 33 | \usepackage{amsfonts,amsmath,amssymb} 34 | \usepackage{soul} % for smarter (word-wrapping) underlining. 35 | \usepackage{lineno} 36 | \usepackage{enumitem} % for broken enumerate in ethics section. 37 | 38 | \usepackage{helvet} 39 | \renewcommand{\familydefault}{\sfdefault} 40 | 41 | \newcommand{\TODO}[1]{{\textcolor{red}{[\textbf{TODO:} #1]}}} 42 | % \titlespacing\section{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt} 43 | % \titlespacing\subsection{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt} 44 | % \titlespacing\subsubsection{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt} 45 | 46 | \titleformat*{\section}{\large\bfseries} 47 | \titleformat*{\subsection}{\normalsize\bfseries} 48 | \titleformat*{\subsubsection}{\normalsize\bfseries} 49 | \let\oldfootnotesize\footnotesize 50 | \renewcommand{\footnotesize}{\fontsize{8bp}{1em}\selectfont} 51 | \renewcommand{\cite}{\autocite} % citations in footnotes 52 | \bibliography{bibliography} 53 | 54 | \headheight=14pt 55 | 56 | % Explicitly set footnote font size to match call (i.e., 8pt). 57 | % Taken from http://tex.stackexchange.com/a/249422/84485 58 | \makeatletter 59 | \renewcommand\footnotesize{% 60 | \@setfontsize\footnotesize\@ixpt{8}% 61 | \abovedisplayskip 8\p@ \@plus2\p@ \@minus4\p@ 62 | \abovedisplayshortskip \z@ \@plus\p@ 63 | \belowdisplayshortskip 4\p@ \@plus2\p@ \@minus2\p@ 64 | \def\@listi{\leftmargin\leftmargini 65 | \topsep 4\p@ \@plus2\p@ \@minus2\p@ 66 | \parsep 2\p@ \@plus\p@ \@minus\p@ 67 | \itemsep \parsep}% 68 | \belowdisplayskip \abovedisplayskip 69 | } 70 | \makeatother 71 | 72 | \hypersetup{ 73 | pdftitle={H2020-MSCA-IF-2017}, % title 74 | pdfauthor={}, 75 | colorlinks=true, 76 | citecolor=black, 77 | linkcolor=black, 78 | urlcolor=blue 79 | } 80 | 81 | \newcommand{\markStartPageLimit}{% 82 | \begin{flushright} 83 | \textcolor{red}{{\large {\bf START PAGE COUNT \--- MAX 10 PAGES~~~~~}}\\ 84 | \rule{\textwidth}{0.5mm} 85 | }\vspace{-.5cm} 86 | \end{flushright} 87 | } 88 | \newcommand{\markEndPageLimit}{% 89 | \vfill 90 | \begin{flushright} 91 | \textcolor{red}{{\large {\bf STOP PAGE COUNT \--- MAX 10 PAGES~~~~~}}\\ 92 | \rule{\textwidth}{0.5mm} 93 | } 94 | \end{flushright} 95 | } 96 | 97 | 98 | % To correctly align fancy headers. 99 | % Courtesy of: http://tex.stackexchange.com/a/88136/84485 100 | \makeatletter 101 | \newcommand{\resetHeadWidth}{\f@nch@setoffs} 102 | \makeatother 103 | 104 | \pagestyle{fancy} 105 | \fancyhead{} 106 | \fancyhead[C]{\color{gray}{\ac{PropAcronym}\xspace\xspace - EF-ST / EF-CAR / EF-RI / EF-SE / GF\\ 107 | (Delete as appropriate and include as header on each page)}} 108 | \fancyfoot{} 109 | \fancyfoot[C]{\color{gray}{Part B - Page \thepage~of \pageref*{sec:endpage}}} 110 | \resetHeadWidth 111 | 112 | \renewcommand{\headrulewidth}{0pt} 113 | 114 | 115 | \renewcommand{\contentsname}{\centerline{TABLE OF CONTENTS}} 116 | % The code below converts all section headings to upper case in the table of contents. 117 | % Courtesy of: http://tex.stackexchange.com/a/156917/84485 118 | \makeatletter 119 | \let\oldcontentsline\contentsline 120 | \def\contentsline#1#2{% 121 | \expandafter\ifx\csname l@#1\endcsname\l@section 122 | \expandafter\@firstoftwo 123 | \else 124 | \expandafter\@secondoftwo 125 | \fi 126 | {% 127 | \oldcontentsline{#1}{\MakeUppercase{#2}}% 128 | }{% 129 | \oldcontentsline{#1}{#2}% 130 | }% 131 | } 132 | \makeatother 133 | 134 | %List of acronyms used in the proposal 135 | %read the acronym package manual for details: http://ctan.mackichan.com/macros/latex/contrib/acronym/acronym.pdf 136 | %\acs{PropAcronym} gives acronym [in square brackets] 137 | %\acl{PropAcronym} gives long form of acronym, probably not used {in second set of braces} 138 | %\acf{PropAcronym} gives both 139 | \begin{acronym} 140 | \acro{IF}{Individual Fellowships} 141 | \acro{PropAcronym}[PROPOSAL ACRONYM]{This is my proposal's acronym} 142 | \end{acronym} 143 | 144 | \begin{document} 145 | %mark proposal acronym as used, such that the short-hand form is always used by default. 146 | \acused{PropAcronym} 147 | %\begin{linenumbers} 148 | 149 | \include{doc1} 150 | \include{doc2} 151 | 152 | %\end{linenumbers} 153 | \end{document} 154 | 155 | 156 | -------------------------------------------------------------------------------- /MC16temp.tex: -------------------------------------------------------------------------------- 1 | \documentclass[a4paper,11pt]{article} 2 | 3 | \usepackage[T1]{fontenc} 4 | \usepackage{lmodern} 5 | \usepackage{eurosym} 6 | \usepackage{lastpage} 7 | \usepackage{xspace} 8 | \usepackage[margin=16mm,includehead,includefoot]{geometry} 9 | \usepackage{fancyhdr} 10 | \usepackage{booktabs} 11 | \usepackage{graphicx} 12 | \usepackage{multirow} 13 | \usepackage{array} 14 | \usepackage{xcolor} 15 | \usepackage{csquotes} 16 | \usepackage{pgfgantt} 17 | \usepackage{titlesec} 18 | \usepackage[style=verbose-ibid,backend=bibtex]{biblatex} 19 | \usepackage[colorlinks=true, citecolor=black, linkcolor=black, urlcolor=blue]{hyperref} 20 | \usepackage{lscape} 21 | 22 | \newcommand{\TODO}[1]{{\textcolor{red}{[\textbf{TODO:} #1]}}} 23 | \newcommand{\acronym}{{\sc YourAcronym}\xspace} 24 | \titlespacing\section{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt} 25 | \titlespacing\subsection{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt} 26 | \titlespacing\subsubsection{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt} 27 | 28 | \titleformat*{\section}{\large\bfseries} 29 | \titleformat*{\subsection}{\normalsize\bfseries} 30 | \titleformat*{\subsubsection}{\normalsize\bfseries} 31 | \let\oldfootnotesize\footnotesize 32 | \renewcommand{\footnotesize}{\fontsize{8bp}{1em}\selectfont} 33 | \renewcommand{\cite}{\autocite} % citations in footnotes 34 | \bibliography{bibliography} 35 | 36 | \headheight=14pt 37 | 38 | \pagestyle{fancy} 39 | \fancyhead{} 40 | \fancyhead[C]{\acronym \ -- GF} 41 | \fancyfoot{} 42 | \fancyfoot[C]{Part B - Page \thepage~of \pageref{LastPage}} 43 | 44 | 45 | \renewcommand{\headrulewidth}{0pt} 46 | 47 | 48 | \renewcommand{\contentsname}{TABLE OF CONTENTS} 49 | 50 | 51 | \begin{document} 52 | 53 | \phantom{a} 54 | \vspace{15mm} 55 | \begin{center} 56 | 57 | 58 | \Large{ 59 | 60 | 61 | \textbf{Document 1\\\vspace{15mm}START PAGE} 62 | 63 | \vspace{15mm} 64 | MARIE SK\L{}ODOWSKA-CURIE ACTIONS\\ 65 | \vspace{1cm} 66 | 67 | \textbf{Individual Fellowships (IF)}\\ 68 | \textbf{Call: H2020-MSCA-IF-2016} 69 | \vspace{2cm} 70 | 71 | PART B 72 | \vspace{2.5cm} 73 | 74 | ``\acronym'' 75 | \vspace{2cm} 76 | 77 | \textbf{This proposal is to be evaluated as:} 78 | \vspace{.5cm} 79 | 80 | \textbf{[GF]} 81 | } 82 | 83 | \end{center} 84 | \vspace{1cm} 85 | 86 | \newpage 87 | %\setcounter{tocdepth}{1} %to remove subsections from table of contents 88 | \tableofcontents 89 | 90 | 91 | \newpage 92 | 93 | \section*{LIST OF PARTICIPATING ORGANISATIONS} 94 | \label{sec:participants} 95 | 96 | Please provide a list of all participating organisations (both beneficiaries and, where applicable, partner organisations\footnote{All partner organisations should be listed here, including secondments}) indicating the legal entity, the department carrying out the work and the supervisor. 97 | If a secondment in Europe is planned but the partner organisation is not yet known, as a minimum the type of organisation foreseen (academic/non-academic) must be stated. 98 | For non-academic beneficiaries, please provide additional data as indicated in the table below. 99 | 100 | \newcommand\rotx[1]{\rotatebox[origin=c]{90}{\textbf{#1}}} 101 | \newcommand\roty[1]{\rotatebox[origin=c]{90}{\parbox{4cm}{\raggedright\textbf{#1}}}} 102 | \newcommand\MyHead[2]{\multicolumn{1}{l|}{\parbox{#1}{\centering #2}}} 103 | 104 | \noindent\begin{tabular}{|m{2.4cm}|m{1cm}|b{1em}|b{1em}|c|m{2.5cm}|m{2cm}|c|} 105 | \hline 106 | \textbf{Participants} 107 | & \MyHead{1cm}{\textbf{Legal\\Entity\\Short\\Name}} 108 | & \rotx{Academic} 109 | & \rotx{Non-academic} 110 | & \textbf{Country} 111 | & \MyHead{2.1cm}{\textbf{Dept. / \\Division / \\Laboratory}} 112 | & \textbf{Supervisor} 113 | & \MyHead{2.5cm}{\textbf{Role of\\Partner\\Organisation\footnotemark}} \\ 114 | \hline 115 | \underline{Beneficiary} & & & & & & & \\\hline 116 | - NAME & & & & & & & \\\hline 117 | \underline{Partner} \underline{Organisation} & & & & & & & \\\hline 118 | - NAME & & & & & & & \\\hline 119 | \end{tabular} 120 | \vspace{\baselineskip} 121 | \footnotetext{For example hosting secondments, for GF hosting the outgoing phase, etc.} 122 | 123 | Data for non-academic beneficiaries 124 | 125 | \noindent\begin{tabular}{|m{1.7cm}|m{2cm}|m{1.8cm}|c|c|m{2.5cm}|c|c|c|} 126 | \hline 127 | \textbf{Name} 128 | & \roty{Location of research premises (city / country)} 129 | & \roty{Type of R\&D activities} 130 | & \roty{No.~of full-time employees} 131 | & \roty{No.~of employees in R\&D} 132 | & \roty{Website} 133 | & \roty{Annual turnover (approx. in Euro)} 134 | & \roty{Enterprise status (Yes/No)} 135 | & \roty{SME status\footnotemark (Yes/No)} 136 | \\\hline 137 | & & & & & & & & \\\hline 138 | \end{tabular} 139 | \vspace{\baselineskip} 140 | \footnotetext{As defined in \href{http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0036:0041:en:PDF}{Commission Recommendation 2003/361/EC.}} 141 | 142 | Note that: 143 | \begin{itemize} 144 | \item Any inter-relationship between the participating organisation(s) or individuals and other entities/persons (e.g. family ties, shared premises or facilities, joint ownership, financial interest, overlapping staff or directors, etc.) must be declared and justified in this part of the proposal; 145 | \item The information in the table for non-academic beneficiaries must be based on current data, not projections; 146 | \end{itemize} 147 | 148 | 149 | \newpage 150 | 151 | \section{Excellence} 152 | \label{sec:excellence} 153 | 154 | \subsection{Quality and credibility of the research/innovation action (level of novelty, appropriate consideration of inter/multidisciplinary and gender aspects) } 155 | \label{sec:quality} 156 | 157 | You should develop your proposal according to the following lines: 158 | \begin{itemize} 159 | \item Introduction, state-of-the-art, objectives and overview of the action. 160 | \item Research methodology and approach: highlight the type of research/innovation activities proposed. 161 | \item Originality and innovative aspects of the research programme: explain the contribution that the action is expected to make to advancements within the action field. Describe any novel concepts, approaches or methods that will be employed. 162 | \item The gender dimension in the research content (if relevant). 163 | \item The interdisciplinary aspects of the action (if relevant). 164 | \item Explain how the high-quality, novel research is the most likely to open up the best career possibilities for the experienced researcher and new collaboration opportunities for the host organisation(s). 165 | \end{itemize} 166 | 167 | \subsection{Quality and appropriateness of the training and of the two way transfer of knowledge between the researcher and the host} 168 | \label{sec:transfer} 169 | 170 | Describe the training that will be offered. 171 | Outline how a two way transfer of knowledge will occur between the researcher and the host institution(s): 172 | \begin{itemize} 173 | \item Explain how the experienced researcher will gain new knowledge during the fellowship at the hosting organisation(s) 174 | \item Outline the previously acquired knowledge and skills that the researcher will transfer to the host organisation(s). 175 | \end{itemize} 176 | 177 | For Global Fellowships explain how the newly acquired skills and knowledge in the Third Country will be transferred back to the host institution in Europe (the beneficiary) during the incoming phase. 178 | 179 | \subsection{Quality of the supervision and of the integration in the team/institution} 180 | \label{sec:supervision} 181 | 182 | \begin{itemize} 183 | \item Qualifications and experience of the supervisor(s). 184 | \end{itemize} 185 | 186 | Provide information regarding the supervisor(s): the level of experience on the research topic proposed and their track record of work, including main international collaborations, as well as the level of experience in supervising researchers. Information provided should include participation in projects, publications, patents and any other relevant results. 187 | 188 | \begin{itemize} 189 | \item Hosting arrangements.\footnote{The hosting arrangements refer to the integration of the researcher to his new environment in the premises of the host. It does not refer to the infrastructure of the host as described in the Quality and efficiency of the implementation criterion.} 190 | \end{itemize} 191 | 192 | The application must show that the experienced researcher will be well integrated within the team/institution in order that all parties gain the maximum knowledge and skills from the fellowship. The nature and the quality of the research group/environment as a whole should be outlined, together with the measures taken to integrate the researcher in the different areas of expertise, disciplines, and international networking opportunities that the host could offer. 193 | 194 | For GF both phases should be described - for the outgoing phase, specify the practical arrangements in place to host a researcher coming from another country, and for the incoming phase specify the measures planned for the successful (re-)integration of the researcher. 195 | 196 | \subsection{Capacity of the researcher to reach or re-enforce a position of professional maturity/independence} 197 | \label{sec:maturity} 198 | 199 | Applicants should demonstrate how the proposed research and training will contribute to the further professional development as an independent/mature researcher. 200 | 201 | Describe \textbf{briefly} how the host will contribute to the advancement of the researcher's career. 202 | 203 | Therefore, a complete \textbf{Career Development Plan should not be included in the proposal}, but it is part of implementing the action in line with the European Charter for Researchers. 204 | 205 | \section{Impact} 206 | \label{sec:impact} 207 | 208 | \subsection{Enhancing the potential and future career prospects of the researcher } 209 | \label{sec:enhancement} 210 | 211 | Explain the expected impact of the planned research and training on the career prospects of the experienced researcher after the fellowship. Which new competences will be acquired? 212 | 213 | \subsection{Quality of the proposed measures to exploit and disseminate the action results} 214 | 215 | Describe how the new knowledge generated by the action will be disseminated and exploited, e.g. communicated, transferred into other research settings or, if appropriate, commercialised. 216 | 217 | What is the dissemination strategy - targeted at scientists, potential users and to the wider research and innovation community - to achieve the potential impact of the action? 218 | 219 | Please make also reference to the "Dissemination \& exploitation" section of the H2020 Online \href{http://ec.europa.eu/research/participants/docs/h2020-funding-guide/grants/grant-management/dissemination-of-results_en.htm}{Manual}. 220 | 221 | The following section of the European Charter for Researchers refers specifically to dissemination: 222 | 223 | 224 | \paragraph{Dissemination, exploitation of results} 225 | 226 | All researchers should ensure, in compliance with their contractual arrangements, that the results of their research are disseminated and exploited, e.g. communicated, transferred into other research settings or, if appropriate, commercialised. Senior researchers, in particular, are expected to take a lead in ensuring that research is fruitful and that results are either exploited commercially or made accessible to the public (or both) whenever the opportunity arises. 227 | 228 | Concrete planning for section 2.2 must be included in the Gantt Chart (see point 3.1). 229 | 230 | \subsection{Quality of the proposed measures to communicate the action activities to different target audiences} 231 | 232 | Please make also reference to the guidelines \href{http://ec.europa.eu/research/participants/data/ref/h2020/other/gm/h2020-guide-comm_en.pdf}{Communicating EU research and innovation guidance for project participants} as well as to the "communication" section of the H2020 Online \href{http://ec.europa.eu/research/participants/docs/h2020-funding-guide/grants/grant-management/communication_en.htm}{Manual}. 233 | Concrete planning for section 2.3 must be included in the Gantt Chart (see point 3.1). 234 | 235 | The following section of the European Charter for Researchers refers specifically to public engagement: 236 | 237 | \paragraph{Public engagement} 238 | 239 | Researchers should ensure that their research activities are made known to society at large in such a way that they can be understood by non-specialists, thereby improving the public's understanding of science. Direct engagement with the public will help researchers to better understand public interest in priorities for science and technology and also the public's concerns. 240 | 241 | \section{Quality and Efficiency of the Implementation} 242 | \label{sec:implementation} 243 | 244 | \subsection{Coherence and effectiveness of the work plan} 245 | 246 | The proposal should be designed in such a way to achieve the desired impact. A Gantt Chart should be included in the text listing the following: 247 | 248 | \begin{itemize} 249 | \item Work Packages titles (for EF there should be at least 1 WP); 250 | \item List of major deliverables, if applicable; \footnote{A deliverable is a distinct output of the action, meaningful in terms of the action?s overall objectives and may be a report, a document, a technical diagram, a software, etc. Should the applicants wish to participate in the pilot on Open Research Data, the Data Management Plan should be indicated here. 251 | 252 | Deliverable numbers ordered according to delivery dates. Please use the numbering convention .. For example, deliverable 4.2 would be the second deliverable from work package 4.} 253 | \item List of major milestones, if applicable; \footnote{Milestones are control points in the action that help to chart progress. Milestones may correspond to the completion of a key deliverable, allowing the next phase of the work to begin. They may also be needed at intermediary points so that, if problems have arisen, corrective measures can be taken. A milestone may be a critical decision point in the action where, for example, the researcher must decide which of several technologies to adopt for further development.} 254 | \item Secondments, if applicable. 255 | \end{itemize} 256 | 257 | 258 | The schedule should be in terms of number of months elapsed from the start of the action. 259 | 260 | 261 | \paragraph{Example Gantt Chart} 262 | 263 | Reflecting work package, secondments, training events and dissemination / public engagement activities 264 | \begin{figure}[htbp] 265 | \begin{center} 266 | 267 | \begin{ganttchart}[ 268 | x unit={0.45cm}, 269 | canvas/.append style={fill=none, draw=black!5, line width=.75pt}, 270 | hgrid style/.style={draw=black!5, line width=.75pt}, 271 | vgrid={*1{draw=black!5, line width=.75pt}}, 272 | title/.style={draw=none, fill=none}, 273 | title label font=\bfseries\footnotesize, 274 | title label node/.append style={below=7pt}, 275 | include title in canvas=false, 276 | bar label font=\small\color{black!70}, 277 | group label font=\scriptsize, 278 | bar label node/.append style={left=2cm}, 279 | bar/.append style={draw=none, fill=black!63}, 280 | bar progress label font=\footnotesize\color{black!70}, 281 | group left shift=0, 282 | group right shift=0, 283 | group height=.5, 284 | group peaks tip position=0, 285 | group label node/.append style={left=.1cm}, 286 | group progress label font=\bfseries\small 287 | ]{1}{36} 288 | \gantttitle[ 289 | title label node/.append style={below left=7pt and -6pt} 290 | ]{Month:\quad 1}{1} 291 | \gantttitlelist{2,...,36}{1} \\ 292 | \ganttgroup[group label node/.append style={align=center}]{Work\ganttalignnewline Package}{1}{10} \\ 293 | \ganttgroup{Deliverable}{5}{15} \\ 294 | \ganttgroup{Milestone}{5}{5} \\ 295 | \ganttgroup{Secondment}{20}{23} \\ 296 | \ganttgroup{Conference}{16}{16} \\ 297 | \ganttgroup{Workshop}{17}{17} \\ 298 | \ganttgroup{Seminar}{18}{18} \\ 299 | \ganttgroup{Dissemination}{23}{24} \\ 300 | \ganttgroup[group label node/.append style={align=center}]{Public\ganttalignnewline engagement}{4}{5} \\ 301 | \ganttgroup{Other}{7}{10} 302 | \end{ganttchart} 303 | 304 | \end{center} 305 | \end{figure} 306 | 307 | 308 | \subsection{Appropriateness of the allocation of tasks and resources} 309 | 310 | Describe how the work planning and the resources mobilised will ensure that the research and training objectives will be reached. 311 | Explain why the amount of person-months is appropriate in relation to the activities proposed. 312 | 313 | \subsection{Appropriateness of the management structure and procedures, including risk management} 314 | 315 | Describe the: 316 | 317 | \begin{itemize} 318 | \item Organisation and management structure, as well as the progress monitoring mechanisms put in place, to ensure that objectives are reached; 319 | \item Research and/or administrative risks that might endanger reaching the action objectives and the contingency plans to be put in place should risk occur. 320 | \end{itemize} 321 | 322 | 323 | \subsection{Appropriateness of the institutional environment (infrastructure)} 324 | \label{sec:institution} 325 | 326 | The active contribution of the beneficiary to the research and training activities should be described. For GF also the role of partner organisations in Third Countries for the outgoing phase should appear. 327 | \begin{itemize} 328 | \item Give a description of the main tasks and commitments of the beneficiary and all partner organisations (if applicable). 329 | \item Describe the infrastructure, logistics, facilities offered in as far they are necessary for the good implementation of the action. 330 | \end{itemize} 331 | 332 | %\newpage 333 | %\vspace{15mm} 334 | %\begin{center} 335 | % 336 | % 337 | % \Large{ 338 | % 339 | % 340 | % \textbf{ENDPAGE} 341 | % 342 | % \vspace{15mm} 343 | % MARIE SK\L{}ODOWSKA-CURIE ACTIONS\\ 344 | % \vspace{1cm} 345 | % 346 | % \textbf{Individual Fellowships (IF)}\\ 347 | % \textbf{Call: H2020-MSCA-IF-2016} 348 | % \vspace{2cm} 349 | % 350 | % PART B 351 | % \vspace{2.5cm} 352 | % 353 | % ``\acronym'' 354 | % \vspace{2cm} 355 | % 356 | % \textbf{This proposal is to be evaluated as:} 357 | % \vspace{.5cm} 358 | % 359 | % \textbf{[GF]} 360 | % } 361 | % 362 | % \end{center} 363 | %\vspace{1cm} 364 | 365 | \end{document} -------------------------------------------------------------------------------- /MC16temp2.tex: -------------------------------------------------------------------------------- 1 | \documentclass[a4paper,11pt]{article} 2 | 3 | \usepackage[T1]{fontenc} 4 | \usepackage{lmodern} 5 | \usepackage{eurosym} 6 | \usepackage{lastpage} 7 | \usepackage{xspace} 8 | \usepackage[margin=16mm,includehead,includefoot]{geometry} 9 | \usepackage{fancyhdr} 10 | \usepackage{booktabs} 11 | \usepackage{graphicx} 12 | \usepackage{multirow} 13 | \usepackage{array} 14 | \usepackage{xcolor} 15 | \usepackage{csquotes} 16 | \usepackage{pgfgantt} 17 | \usepackage{titlesec} 18 | \usepackage[style=verbose-ibid,backend=bibtex]{biblatex} 19 | \usepackage[colorlinks=true, citecolor=black, linkcolor=black, urlcolor=blue]{hyperref} 20 | \usepackage{lscape} 21 | \usepackage{amsmath, amssymb, amsthm, amsfonts, graphicx, mathrsfs, color, genyoungtabtikz, enumitem, tikz, mathtools,stmaryrd, framed} 22 | 23 | \newcommand{\todo}[1]{{\textcolor{red}{[\textbf{TO DO:} #1]}}} 24 | \newcommand{\acronym}{{\sc YourAcronym}\xspace} 25 | \titlespacing\section{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt} 26 | \titlespacing\subsection{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt} 27 | \titlespacing\subsubsection{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt} 28 | 29 | \titleformat*{\section}{\large\bfseries} 30 | \titleformat*{\subsection}{\normalsize\bfseries} 31 | \titleformat*{\subsubsection}{\normalsize\bfseries} 32 | \let\oldfootnotesize\footnotesize 33 | \renewcommand{\footnotesize}{\fontsize{8bp}{1em}\selectfont} 34 | \renewcommand{\cite}{\autocite} % citations in footnotes 35 | \bibliography{bibliography} 36 | 37 | \headheight=14pt 38 | 39 | \pagestyle{fancy} 40 | \fancyhead{} 41 | \fancyhead[C]{\acronym \ -- GF} 42 | \fancyfoot{} 43 | \fancyfoot[C]{Part B - Page \thepage~of \pageref{LastPage}} 44 | 45 | 46 | \renewcommand{\headrulewidth}{0pt} 47 | 48 | 49 | \renewcommand{\contentsname}{TABLE OF CONTENTS} 50 | 51 | 52 | 53 | %%\newcommand{\nchar}{\operatorname{char}} 54 | %\newcommand\sss{\mathfrak S_} 55 | %\newcommand\hhh{\mathscr H_} 56 | %\newcommand\rrr{\mathscr R_} 57 | %%\newcommand\spe[1]{\operatorname{S}_{#1}} 58 | %\newcommand\rspe[1]{\operatorname{S}^{#1}} 59 | %%\newcommand\D[1]{\operatorname{D}_{#1}} 60 | %\newcommand\rD[1]{\operatorname{D}^{#1}} 61 | %\newcommand\la\lambda 62 | %\newcommand\La\Lambda 63 | 64 | 65 | 66 | \begin{document} 67 | 68 | %\phantom{a} 69 | %\vspace{15mm} 70 | %\begin{center} 71 | % 72 | % 73 | % \Large{ 74 | % 75 | % 76 | % \textbf{Document 2\\\vspace{15mm}START PAGE} 77 | % 78 | % \vspace{15mm} 79 | % MARIE SK\L{}ODOWSKA-CURIE ACTIONS\\ 80 | % \vspace{1cm} 81 | % 82 | % \textbf{Individual Fellowships (IF)}\\ 83 | % \textbf{Call: H2020-MSCA-IF-2016} 84 | % \vspace{2cm} 85 | % 86 | % PART B 87 | % \vspace{2.5cm} 88 | % 89 | % ``\acronym'' 90 | % \vspace{2cm} 91 | % 92 | % \textbf{This proposal is to be evaluated as:} 93 | % \vspace{.5cm} 94 | % 95 | % \textbf{[GF]} 96 | % } 97 | % 98 | % \end{center} 99 | %\vspace{1cm} 100 | 101 | \newpage 102 | %\setcounter{tocdepth}{1} %to remove subsections from table of contents 103 | \setcounter{section}{3} 104 | 105 | \textbf{\LARGE{Document 2\vspace{8mm}}} 106 | 107 | \section{CV of the Experienced Researcher} 108 | \label{sec:cv} 109 | 110 | The CV is intrinsic to the evaluation of the whole proposal and is assessed throughout the 3 evaluation criteria by the expert evaluators. 111 | 112 | This section should be limited to maximum 5 pages and should include the standard academic and research record. Any research career gaps and/or unconventional paths should be clearly explained so that this can be fairly assessed by the independent evaluators. 113 | 114 | The experienced researchers must provide a list of achievements reflecting their track record, and this may include, if applicable: 115 | \begin{enumerate} 116 | \item Publications in peer-reviewed scientific journals, peer-reviewed conference proceedings and/or monographs of their respective research fields, indicating also the number of citations (excluding self-citations) they have attracted. 117 | \item Granted patent(s). 118 | \item Research monographs, chapters in collective volumes and any translations thereof. 119 | \item Invited presentations to peer-reviewed, internationally established conferences and/or international advanced schools. 120 | \item Research expeditions that the experienced researcher has led. 121 | \item Organisation of International conferences in the field of the researcher (membership in the steering and/or programme committee). 122 | \item Examples of participation in industrial innovation. 123 | \item Prizes and Awards. 124 | \item Funding received so far 125 | \item Supervising, mentoring activities, if applicable. 126 | \end{enumerate} 127 | 128 | \newpage 129 | 130 | \section{Capacity of the Participating Organisations} 131 | \label{sec:capacities} 132 | 133 | Beneficiaries and partner organisations must complete the appropriate table below. 134 | 135 | Complete one table (min font size: 9) of maximum one page per beneficiary and one page per partner organisation. The expert evaluators will be instructed to disregard content above this limit. 136 | \vspace{\baselineskip} 137 | 138 | {\fontsize{9bp}{1em}\selectfont % should be 9pt 139 | \noindent\begin{tabular}{>{\raggedright}p{.25\textwidth}p{.7\textwidth}} 140 | \multicolumn{2}{l}{\textbf{Beneficiary X}} \\\midrule 141 | \textbf{General Description} & 142 | 143 | \\\midrule 144 | \textbf{Role and Commitment of key persons (supervisor)} & 145 | (names, title, qualifications of the main supervisor) 146 | \\\midrule 147 | \textbf{Key Research Facilities, Infrastructure and Equipment} & 148 | Demonstrate that the beneficiary has sufficient facilities and infrastructure to host and/or offer a suitable environment for training and transfer of knowledge to the recruited experienced researcher 149 | \\\midrule 150 | \textbf{Independent research premises?} & 151 | Please explain the status of the beneficiary's research facilities ? i.e. are they owned by the beneficiary or rented by it? Are its research premises wholly independent from other entities? 152 | 153 | \\\midrule 154 | \textbf{Previous Involvement in Research and Training Programmes} & 155 | Detail any (maximum 5) relevant EU, national or international research and training actions/projects in which the beneficiary has previously participated 156 | 157 | \\\midrule 158 | \textbf{Current involvement in Research and Training Programmes} & 159 | Detail the EU and/or national research and training actions in which the beneficiary is currently participating 160 | 161 | \\\midrule 162 | \textbf{Relevant Publications and/or research/innovation products} & 163 | (Max 5) Only list items (co-)produced by the supervisor 164 | 165 | \\\bottomrule 166 | \end{tabular}} 167 | \vspace{\baselineskip} 168 | 169 | {\fontsize{9bp}{1em}\selectfont 170 | \noindent\begin{tabular}{>{\raggedright}p{.25\textwidth}p{.7\textwidth}} 171 | \multicolumn{2}{l}{\textbf{Partner Organisation Y}} \\\midrule 172 | \textbf{General Description} & 173 | 174 | \\\midrule 175 | \textbf{Key Persons and Expertise (supervisor)} & 176 | 177 | \\\midrule 178 | \textbf{Key Research facilities, infrastructure and equipment} & 179 | 180 | \\\midrule 181 | \textbf{Previous and Current Involvement in Research and Training Programmes} & 182 | 183 | \\\midrule 184 | \textbf{Relevant Publications and/or research/innovation product} & 185 | (Max 3) 186 | \\\bottomrule 187 | \end{tabular}} 188 | 189 | \newpage 190 | 191 | \section{Ethical Issues} 192 | 193 | Compliance with the relevant ethics provisions is essential from the beginning to 194 | the end of the action and is an integral part of research funded by the European 195 | Union within Horizon 2020. 196 | 197 | Applicants submitting research proposals for funding within Marie Sk\l{}odowska-Curie actions in Horizon 2020 should demonstrate proactively to the REA that they are aware of and will comply with European and national legislation and fundamental ethical principles, including those reflected in the \href{http://www.europarl.europa.eu/charter/pdf/text_en.pdf}{Charter of Fundamental Rights of the European Union} and the \href{http://www.echr.coe.int/Documents/Convention_ENG.pdf}{European Convention on Human Rights and its Supplementary Protocols}. 198 | 199 | Please be aware that it is the applicants' responsibility to identify any potential ethical issue, to handle the ethical aspects of the proposal and to detail how these aspects will be addressed. 200 | 201 | \subsection*{The Ethics Review Procedure in Horizon 2020} 202 | All proposals above threshold and considered for funding will undergo an Ethics Review carried out by independent ethics experts. When submitting a proposal to Horizon 2020, all applicants are required to complete an ``Ethics Issues Table (EIT)" in the Part A of the proposal. Applicants who flag ethical issues in the EIT 203 | have to also complete a more in depth Ethics Self-Assessment in Part B. 204 | 205 | The ethics self-assessment will become part of the Grant Agreement and may 206 | thus lead to binding obligations that may later on be checked during ethics 207 | checks, reviews and audits. 208 | 209 | For more details, please refer to the H2020 \href{http://ec.europa.eu/research/participants/data/ref/h2020/grants_manual/hi/ethics/h2020_hi_ethics-self-assess_en.pdf}{``How to complete your Ethics 210 | Self- Assessment"} guide. 211 | 212 | \fbox{\href{http://ec.europa.eu/research/participants/docs/h2020-funding-guide/cross-cutting-issues/ethics_en.htm}{Ethics link}} 213 | 214 | \subsection*{Ethics Self-Assessment (Part B)} 215 | 216 | The Ethics Self-Assessment must: 217 | \begin{enumerate} 218 | \item Describe how the proposal meets the EU and national legal and ethics requirements of the country/countries where the task raising ethical issues is to be carried out. 219 | \end{enumerate} 220 | 221 | For more information on how to deal with Third Countries please see Article 34 of the \href{http://ec.europa.eu/research/participants/data/ref/h2020/grants_manual/amga/h2020-amga_en.pdf}{Annotated Model Grant Agreement}, as well as this \href{http://ec.europa.eu/justice/data-protection/international-transfers/adequacy/index_en.htm}{link}. 222 | 223 | Please list the documents provided with their expiry date. 224 | 225 | Ensure early compliance of the proposed research with EU and national legislation on ethics in research. Should your proposal be selected for funding, you will be required to provide as soon as possible the following documents (if applicable): 226 | 227 | \begin{itemize} 228 | \item an opinion from an Ethics Committee/Authority, required under national law; 229 | \item any other ethics-related documents mandatory under EU or national legislation; 230 | \end{itemize} 231 | 232 | If you have not already applied for/received the ethics approval/required ethics documents when submitting the proposal, please indicate in this section the approximate date when you will provide the missing approval/any other ethics documents, to the REA (scanned copy). Please state explicitly that you will not proceed with any research with ethical implications before the REA has received a scanned copy of all documents proving compliance with existing EU/national legislation on ethics. 233 | 234 | \begin{framed} 235 | \noindent If these documents are not issued in English, you are encouraged to submit also an English summary\\ 236 | (containing in particular, if available, the conclusions of the Committee or Ethics Authority concerned). 237 | If you plan to request these ethics documents specifically for your proposed action, your request must contain an explicit reference to the action's title. 238 | \end{framed} 239 | 240 | \begin{enumerate}[resume] 241 | \item Explain in detail how you intend to address the ethical issues flagged, in particular with regard to: 242 | \begin{itemize} 243 | \item the research objectives (e.g.~study of vulnerable populations, cooperation with a Third Country, etc.); 244 | \item the research methodology (e.g.~clinical trials, involvement of children and related information and consent/assent procedures, data protection and privacy issues related to data collected, etc.); 245 | \item the potential impact of the research (e.g.~dual use issues, environmental damage, malevolent use, etc.). 246 | \end{itemize} 247 | \end{enumerate} 248 | 249 | \newpage 250 | 251 | \section{Letters of Commitment (GF only)} 252 | 253 | Please use this section only for the Global Fellowships to insert scanned copies of the required Letters of Commitment from the partner organisations in TC. Minimum requirements for the letter of commitment: 254 | 255 | \begin{itemize} 256 | \item heading or stamp from the institution; 257 | \item up-to-date (i.e.~issued after the call publication date, 12 April 2016); 258 | \item the text must demonstrate the will to actively participate in the proposed action and the precise role; 259 | \item signed by the legal representative. 260 | \end{itemize} 261 | 262 | Please note that proposals failing to comply with the above-mentioned requirements will be declared inadmissible. 263 | 264 | \newpage 265 | 266 | \vspace{15mm} 267 | \begin{center} 268 | 269 | 270 | \Large{ 271 | 272 | 273 | \textbf{ENDPAGE} 274 | 275 | \vspace{15mm} 276 | MARIE SK\L{}ODOWSKA-CURIE ACTIONS\\ 277 | \vspace{1cm} 278 | 279 | \textbf{Individual Fellowships (IF)}\\ 280 | \textbf{Call: H2020-MSCA-IF-2016} 281 | \vspace{2cm} 282 | 283 | PART B 284 | \vspace{2.5cm} 285 | 286 | ``\acronym'' 287 | \vspace{2cm} 288 | 289 | \textbf{This proposal is to be evaluated as:} 290 | \vspace{.5cm} 291 | 292 | \textbf{[GF]} 293 | } 294 | 295 | \end{center} 296 | \vspace{1cm} 297 | 298 | \end{document} -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | proposal=IF-2017-Part_B 2 | 3 | all: 4 | make proposal 5 | 6 | proposal: 7 | pdflatex ${proposal} 8 | pdflatex -jobname=document1 "\includeonly{doc1}\input{${proposal}}" 9 | pdflatex -jobname=document2 "\includeonly{doc2}\input{${proposal}}" 10 | bibtex ${proposal} 11 | bibtex document1 12 | bibtex document2 13 | pdflatex ${proposal} 14 | pdflatex ${proposal} 15 | pdflatex -jobname=document1 "\includeonly{doc1}\input{${proposal}}" 16 | pdflatex -jobname=document2 "\includeonly{doc2}\input{${proposal}}" 17 | 18 | clean: 19 | rm -f *~ *.aux *.idx *.log *.bbl *.lol *.lof *.lot *.blg *-blx.bib *.out *.backup *.brf *.toc *.bcf *.run.xml 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is a LaTeX template for the Marie Sklodowska-Curie Individual Fellowships application (H2020-MSCA-IF-2017). 2 | 3 | Disclaimer: I do not offer any guaratees about this template. 4 | In particular, I cannot assure you that it fits the required guidelines (although I have tried to make it so). 5 | 6 | Feel free to open a pull request if you would like to improve this template! 7 | 8 | 9 | ## Usage Instructions 10 | 11 | The easiest way to compile the pdf is with the makefile (courtesy of @ilfreddy). 12 | In a terminal (i.e., on the command line), navigate to the project directory and type: 13 | 14 | > make 15 | 16 | This will produce [document1.pdf](document1.pdf) and [document2.pdf](document2.pdf), 17 | corresponding to the two parts of Part B in the 2017 call. 18 | It will also produce [IF-2017-Part_B.pdf](IF-2017-Part_B.pdf), which contains both parts. 19 | When submitting the grant, one must submit documents 1 and 2 separately. 20 | 21 | 22 | To prepare your proposal you will want to: 23 | 24 | 1. Edit the relevant metadata in [IF-2017-Part_B.tex](IF-2017-Part_B.tex), 25 | such as your proposal acronym. 26 | 27 | 2. Complete [doc1.tex](doc1.tex), which corresponds to the first document of Part B 28 | in the 2017 call. 29 | 30 | 3. Complete [doc2.tex](doc2.tex), which corresponds to the second document. 31 | 32 | 33 | If you encounter difficulties compiling the pdf, try the following: 34 | 35 | * Delete all `*.aux` files before compiling. 36 | 37 | * Consult [this StackOverflow answer](http://tex.stackexchange.com/a/31366/84485), 38 | which is what the script is based on. 39 | 40 | * Just build [IF-2017-Part_B.tex](IF-2017-Part_B.tex) normally and then manually split the files. 41 | -------------------------------------------------------------------------------- /bibliography.bib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc1.tex: -------------------------------------------------------------------------------- 1 | % !TEX root = ./IF-2017-Part_B.tex 2 | 3 | \addcontentsline{toc}{section}{\hspace{-0.5cm}Document 1} 4 | \addcontentsline{toc}{section}{Start Page} 5 | \phantom{a} 6 | \vspace{15mm} 7 | \begin{center} 8 | 9 | 10 | \Large{ 11 | 12 | 13 | \textbf{START PAGE} 14 | 15 | \vspace{15mm} 16 | MARIE SK\L{}ODOWSKA-CURIE ACTIONS\\ 17 | \vspace{1cm} 18 | 19 | \textbf{\acf{IF}}\\ 20 | \textbf{Call: H2020-MSCA-IF-2017} 21 | \vspace{2cm} 22 | 23 | PART B 24 | \vspace{2.5cm} 25 | 26 | ``{\sc \ac{PropAcronym}\xspace}'' 27 | \vspace{2cm} 28 | 29 | \textbf{This proposal is to be evaluated as:} 30 | \vspace{.5cm} 31 | 32 | \textbf{[EF-ST] [EF-CAR] [EF-RI] [EF-SE] [GF]}\\ 33 | } 34 | \large{[Delete as appropriate]} 35 | 36 | \end{center} 37 | \vspace{1cm} 38 | 39 | \newpage 40 | \setcounter{tocdepth}{1} 41 | \tableofcontents 42 | 43 | 44 | \newpage 45 | 46 | \section*{Table of contents} 47 | \label{sec:toc} 48 | 49 | There are no specific instructions about the table of contents. It can cover both part B1 and B2. 50 | 51 | \medskip\noindent 52 | \emph{This section must consist of 1 whole page.} 53 | 54 | 55 | \addcontentsline{toc}{section}{List of Participating Organisations} 56 | \section*{List of Participating Organisations} 57 | \label{sec:participants} 58 | 59 | Please provide a list of all participating organisations (the beneficiaries and, where applicable, the entity with 60 | a capital or legal link to the beneficiary and the partner organisation% 61 | \footnote{All partner organisations should be listed here, including secondments}) 62 | indicating the legal entity, the department carrying out the work and the supervisor. 63 | 64 | \medskip\noindent 65 | If a secondment in Europe is planned but the partner organisation is not yet known, as a minimum the type of organisation foreseen (academic/non-academic) must be stated. 66 | 67 | \newcommand\rotx[1]{\rotatebox[origin=c]{90}{\textbf{#1}}} 68 | \newcommand\roty[1]{\rotatebox[origin=c]{90}{\parbox{4cm}{\raggedright\textbf{#1}}}} 69 | \newcommand\MyHead[2]{\multicolumn{1}{l|}{\parbox{#1}{\centering #2}}} 70 | 71 | \noindent\begin{tabular}{|m{2.4cm}|m{1cm}|b{1em}|b{1em}|c|m{2.5cm}|m{2cm}|c|} 72 | \hline 73 | \textbf{Participants} 74 | & \MyHead{1cm}{\textbf{Legal\\Entity\\Short\\Name}} 75 | & \rotx{Academic} 76 | & \rotx{Non-academic} 77 | & \textbf{Country} 78 | & \MyHead{2.1cm}{\textbf{Dept. / \\Division / \\Laboratory}} 79 | & \textbf{Supervisor} 80 | & \MyHead{2.5cm}{\textbf{Role of\\Partner\\Organisation\footnotemark}} \\ 81 | \hline 82 | \ul{Beneficiary} & & & & & & & \\\hline 83 | - NAME & & & & & & & \\\hline 84 | \ul{Entity with a capital or legal link} & & & & & & & \\\hline 85 | - NAME & & & & & & & \\\hline 86 | \ul{Partner} \ul{\mbox{Organisation}} & & & & & & & \\\hline 87 | - NAME & & & & & & & \\\hline 88 | \end{tabular} 89 | \vspace{\baselineskip} 90 | \footnotetext{For example hosting secondments, for GF hosting the outgoing phase, etc.} 91 | 92 | 93 | \noindent 94 | For non-academic beneficiaries, please provide additional detail as indicated in the table below. 95 | 96 | \noindent\begin{tabular}{|m{1.7cm}|m{2cm}|m{1.8cm}|c|c|m{2.5cm}|c|c|c|} 97 | \hline 98 | \textbf{Name} 99 | & \roty{Location of research premises (city / country)} 100 | & \roty{Type of R\&D activities} 101 | & \roty{No. of fulltime employees} 102 | & \roty{No. of employees in R\&D} 103 | & \roty{Website} 104 | & \roty{Annual turnover (approx. in Euro)} 105 | & \roty{Enterprise status (Yes/No)} 106 | & \roty{SME status\footnotemark (Yes/No)} 107 | \\\hline 108 | & & & & & & & & \\\hline 109 | \end{tabular} 110 | \vspace{\baselineskip} 111 | \footnotetext{As defined in \href{http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2003:124:0036:0041:en:PDF}{Commission Recommendation 2003/261/EC.}} 112 | 113 | \noindent 114 | Any inter-relationship between different participating institution(s) or individuals and other entities/persons (e.g. family ties, shared premises or facilities, joint ownership, financial interest, overlapping staff or directors, etc.) \textbf{must} be declared and justified \textbf{in this part of the proposal}; 115 | 116 | \medskip\noindent 117 | The information in the table for non-academic beneficiaries \textbf{must be based on current data, not projections}. 118 | 119 | \medskip\noindent 120 | \emph{This section must consist of 1 whole page.} 121 | 122 | 123 | \newpage 124 | \markStartPageLimit 125 | \section{Excellence} 126 | \label{sec:excellence} 127 | ~\footnote{Literature should be listed in footnotes, font size 8 or 9. 128 | All literature references will count towards the page limit.} 129 | 130 | \subsection{Quality and credibility of the research/innovation action (level of novelty, appropriate consideration of inter/multidisciplinary and gender aspects)} 131 | \label{sec:excellence_quality} 132 | 133 | You should develop your proposal according to the following lines: 134 | \begin{itemize} 135 | \item Introduction, state-of-the-art, specific objectives and overview of the action 136 | \item Research methodology and approach: highlight the type of research / innovation activities proposed 137 | \item Originality and innovative aspects of the research programme: explain the contribution that the action is expected to make to advancements within the action field. Describe any novel concepts, approaches or methods that will be implemented. 138 | \item The gender dimension in the research content (if relevant). 139 | 140 | \setlength{\fboxsep}{1mm} 141 | \fbox{\parbox{.98\linewidth}{ 142 | {\small In research activities where human beings are involved as subjects or end-users, 143 | gender differences may exist. In these cases the gender dimension in the research 144 | content has to be addressed as an integral part of the proposal to ensure the highest 145 | level of scientific quality.} 146 | }} 147 | 148 | \item The interdisciplinary aspects of the action (if relevant). 149 | \item Explain how the high-quality, novel research is the most likely to open up the best career possibilities for the {\em experienced researcher} and new collaboration opportunities for the host organisation(s). 150 | \end{itemize} 151 | 152 | 153 | 154 | 155 | \subsection{Quality and appropriateness of the training and of the two way transfer of knowledge between the researcher and the host} 156 | \label{sec:excellence_transfer} 157 | 158 | Describe the training that will be offered. 159 | 160 | \medskip\noindent 161 | Outline how a two way transfer of knowledge will occur between the researcher and the host institution(s): 162 | \begin{itemize} 163 | \item Explain how the \emph{experienced researcher} will gain new knowledge during the fellowship at the hosting organisation(s). 164 | \item Outline the previously acquired knowledge and skills that the researcher will transfer to the host organisation(s). 165 | \end{itemize} 166 | 167 | \noindent 168 | For Global Fellowships explain how the newly acquired skills and knowledge in the Third Country will be transferred back to the host institution in Europe (the beneficiary) during the incoming phase. 169 | 170 | \medskip\noindent 171 | Typical \textbf{training activities} in Individual Fellowships may include: 172 | \begin{itemize} 173 | \item Primarily, \emph{training-through-research} by the means of an \ul{individual personalised 174 | project}, under the guidance of the supervisor and other members of the research 175 | staff of the host organisation(s) 176 | \item Hands-on training activities for developing scientific skills (new techniques, 177 | instruments, research integrity, 'big data'/'open science') and transferrable skills 178 | (entrepreneurship, proposal preparation to request funding, patent applications, 179 | management of IPR, project management, task coordination, supervising and 180 | monitoring, take up and exploitation of research results) 181 | \item Inter-sectoral or interdisciplinary transfer of knowledge (e.g. through secondments) 182 | \item Taking part in the research and financial management of the action 183 | \item Organisation of scientific/training/dissemination events 184 | \item Communication, outreach activities and horizontal skills 185 | \item Training dedicated to gender issues 186 | \end{itemize} 187 | 188 | 189 | 190 | 191 | \subsection{Quality of the supervision and of the integration in the team/institution} 192 | \label{sec:excellence_supervision} 193 | 194 | \begin{itemize} 195 | \item Qualifications and experience of the supervisor(s) 196 | 197 | Provide information regarding the supervisor(s): 198 | the level of experience on the research topic proposed and their track record of work, 199 | including main international collaborations, 200 | as well as the level of experience in supervising/training especially at advanced level (PhD, postdoctoral) researchers. 201 | Information provided should include participation in projects, publications, patents and any other relevant results. 202 | 203 | \item Hosting arrangements% 204 | \footnote{The hosting arrangements refer to the integration of the researcher to his new environment in the premises of the host. 205 | It does not refer to the infrastructure of the host as described in the Quality and efficiency of the implementation criterion.} 206 | 207 | The application must show that the experienced researcher will be well integrated within the team/institution in order that all parties gain the maximal knowledge and skills from the fellowship. 208 | The nature and the quality of the research group/environment as a whole should be outlined, 209 | together with the measures taken to integrate the researcher in the different areas of expertise, disciplines, and international networking opportunities that the host could offer. 210 | 211 | For GF both phases should be described - for the outgoing phase, specify the practical arrangements in place to host a researcher coming from another country, 212 | and for the incoming phase specify the measures planned for the successful (re)integration of the researcher. 213 | \end{itemize} 214 | 215 | 216 | 217 | 218 | \subsection{Capacity of the researcher to reach or re-enforce a position of professional maturity/independence} 219 | \label{sec:excellence_maturity} 220 | 221 | Applicants should \textbf{demonstrate} how their professional experience and the proposed 222 | research will contribute to their development as independent/mature researchers, \ul{\textbf{during}} 223 | the fellowship. 224 | 225 | \medskip\noindent 226 | Please keep in mind that the fellowships will be awarded to the most talented researchers 227 | as shown by the proposed research and their track record (Curriculum Vitae, section 4), 228 | in relation to their level of experience. 229 | 230 | \medskip\noindent 231 | A complete {\bf Career Development Plan should not be included in the proposal}, 232 | but it is part of implementing the action in line with the European Charter for Researchers. It 233 | should aim at reaching a realistic and well-defined objective in terms of career 234 | advancement (by attaining a leading independent position for example) or resuming a 235 | research career after a break. The plan should be devised with the final outcome to 236 | develop and significantly widen the competences of the experienced researcher, 237 | particularly in terms of multi/interdisciplinary expertise, inter-sectoral experience and 238 | transferable skills. 239 | 240 | 241 | 242 | 243 | \newpage 244 | \section{Impact} 245 | \label{sec:impact} 246 | 247 | \subsection{Enhancing the potential and future career prospects of the researcher} 248 | \label{sec:impact_researcher} 249 | 250 | Explain the expected impact of the planned research and training on the future career prospects of the experienced researcher \ul{\textbf{after}} the fellowship. 251 | 252 | \medskip\noindent 253 | Describe the added value of the fellowship on the future career opportunities of the 254 | researcher. 255 | 256 | \medskip\noindent 257 | Which new competences and skills will be acquired? How should these make the 258 | researcher more successful? 259 | 260 | 261 | 262 | 263 | \subsection{Quality of the proposed measures to exploit and disseminate the action results} 264 | \label{sec:impact_dissemination} 265 | 266 | \setlength{\fboxsep}{1mm} 267 | \fbox{\parbox{\textwidth}{ 268 | {\large {\bf Background -- Dissemination and exploitation of results}} 269 | 270 | \medskip\noindent 271 | Dissemination and Exploitation strategy is about the results of the action and it is targeted 272 | at peers (scientific or the action's own community, industry and other commercial actors, 273 | professional organisations, policymakers) and to the wider research and innovation 274 | community - to achieve and expand the potential impact of the action. The proposal 275 | should describe the foreseen dissemination and exploitation activities and their expected 276 | impact. 277 | 278 | \smallskip\noindent 279 | All researchers should ensure, in compliance with their contractual arrangements, that the 280 | results of their research are disseminated and exploited, e.g. communicated, transferred 281 | into other research settings or, if appropriate, commercialised. Senior researchers, in 282 | particular, are expected to take a lead in ensuring that research is fruitful and that results 283 | are either exploited commercially or made accessible to the public (or both) whenever the 284 | opportunity arises. 285 | 286 | \smallskip\noindent 287 | Please refer also to the \href{http://ec.europa.eu/research/participants/docs/h2020-funding-guide/grants/grant-management/dissemination-of-results_en.htm}{"Dissemination \& exploitation" section of the H2020 Online Manual}. 288 | }} 289 | 290 | \medskip\noindent 291 | Describe how the new knowledge generated by the action will be disseminated and exploited, 292 | e.g. communicated, transferred into other research settings or, if appropriate, commercialised. 293 | Describe, when relevant, how intellectual property rights will be dealt with. 294 | 295 | \medskip\noindent 296 | A concrete planning for section~\ref{sec:impact_dissemination} must be included in the Gantt Chart (see point~\ref{sec:implementation_work_plan}). 297 | 298 | 299 | 300 | 301 | \subsection{Quality of the proposed measures to communicate the action activities to different target audiences} 302 | \label{sec:impact_communication} 303 | 304 | \setlength{\fboxsep}{1mm} 305 | \fbox{\parbox{\textwidth}{ 306 | {\large {\bf Background -- Communication}} 307 | 308 | \medskip\noindent 309 | Communication of the action aims to demonstrate the ways in which the research, 310 | training and mobility contribute to a European "Innovation Union" and account for public 311 | spending. It should provide tangible proof that the funded action adds value by: 312 | 313 | \begin{itemize} 314 | \item showing how European and international collaboration has achieved more than would 315 | have otherwise been possible, notably in achieving scientific excellence, contributing to 316 | competitiveness and, where relevant, solving societal challenges; 317 | \item showing how the outcomes are relevant to our everyday lives, by creating jobs, training 318 | skilled researchers, introducing novel technologies, bringing ideas from research to 319 | market or making our lives more comfortable in other ways; 320 | \item promoting results, which may possibly influence policy-making, and ensure follow-up 321 | by industry, civil society and by the scientific community. 322 | \end{itemize} 323 | 324 | In the MSCA, public engagement is an important part of communication. The primary 325 | goal of public engagement activities is to create awareness among the general public of 326 | the research work performed under these projects and its implications for citizens and 327 | society. The type of outreach activities could range from press articles and participating 328 | in European Researchers' Night events to presenting science, research and innovation 329 | activities to students from primary and secondary schools or universities in order to 330 | develop their interest in research careers. 331 | 332 | \smallskip\noindent 333 | Researchers should ensure that their research activities -- both the action and, when 334 | available, its results -- are made known to society at large in such a way that they can be 335 | understood by non-specialists, thereby improving the public's understanding of science. 336 | Direct engagement with the public will help researchers to better understand public 337 | interest in priorities for science and technology and also the public's concerns. 338 | 339 | \bigskip\noindent 340 | For more details, see the guide on \href{http://ec.europa.eu/research/participants/data/ref/h2020/other/gm/h2020-guide-comm_en.pdf}{Communicating EU research and innovation guidance 341 | for project participants} as well as the \href{http://ec.europa.eu/research/participants/docs/h2020-funding-guide/grants/grant-management/communication_en.htm}{"communication" section of the H2020 Online 342 | Manual}. 343 | }} 344 | 345 | \medskip\noindent 346 | The frequency and nature of communication activities should be outlined in the proposal. 347 | Concrete plans for the above must be included as a deliverable. 348 | 349 | \medskip\noindent 350 | A concrete planning for section~\ref{sec:impact_communication} must be included in the Gantt Chart (see point~\ref{sec:implementation_work_plan}). 351 | 352 | 353 | 354 | 355 | \newpage 356 | \section{Quality and Efficiency of the Implementation} 357 | \label{sec:implementation} 358 | 359 | \subsection{Coherence and effectiveness of the work plan} 360 | \label{sec:implementation_work_plan} 361 | 362 | The proposal should be designed in such a way to achieve the desired impact. 363 | A Gantt Chart should be included in the text listing the following: 364 | 365 | \begin{itemize} 366 | \item Work Packages titles (for EF there should be at least 1 WP); 367 | \item List of major deliverables, if applicable;% 368 | \footnote{A deliverable is a distinct output of the action, meaningful in terms of the action's overall objectives and may be a report, a document, a technical diagram, a software, etc. 369 | Should the applicants wish to participate in the pilot on Open Research Data, the Data Management Plan should be indicated here.\\ 370 | Deliverable numbers ordered according to delivery dates. 371 | Please use the numbering convention .. 372 | For example, deliverable 4.2 would be the second deliverable from work package 4.} 373 | \item List of major milestones, if applicable;% 374 | \footnote{Milestones are control points in the action that help to chart progress. 375 | Milestones may correspond to the completion of a key deliverable, allowing the next phase of the work to begin. 376 | They may also be needed at intermediary points so that, if problems have arisen, corrective measures can be taken. 377 | A milestone may be a critical decision point in the action where, for example, the researcher must decide which of several technologies to adopt for further development.} 378 | \item Secondments, if applicable. 379 | \end{itemize} 380 | 381 | \noindent 382 | The schedule should be in terms of number of months elapsed from the start of the action. 383 | 384 | 385 | 386 | 387 | \begin{figure}[!htbp] 388 | \begin{center} 389 | 390 | \begin{ganttchart}[ 391 | canvas/.append style={fill=none, draw=black!5, line width=.75pt}, 392 | hgrid style/.style={draw=black!5, line width=.75pt}, 393 | vgrid={*1{draw=black!5, line width=.75pt}}, 394 | title/.style={draw=none, fill=none}, 395 | title label font=\bfseries\footnotesize, 396 | title label node/.append style={below=7pt}, 397 | include title in canvas=false, 398 | bar label font=\small\color{black!70}, 399 | bar label node/.append style={left=2cm}, 400 | bar/.append style={draw=none, fill=black!63}, 401 | bar progress label font=\footnotesize\color{black!70}, 402 | group left shift=0, 403 | group right shift=0, 404 | group height=.5, 405 | group peaks tip position=0, 406 | group label node/.append style={left=.6cm}, 407 | group progress label font=\bfseries\small 408 | ]{1}{24} 409 | \gantttitle[ 410 | title label node/.append style={below left=7pt and -3pt} 411 | ]{Month:\quad1}{1} 412 | \gantttitlelist{2,...,24}{1} \\ 413 | \ganttgroup{Work Package}{1}{24} \\ 414 | \ganttgroup{Deliverable}{24}{24} \\ 415 | \ganttgroup{Milestone}{5}{5} \\ 416 | \ganttgroup{Secondment}{20}{23} \\ 417 | \ganttgroup{Short stay}{16}{16} \\ 418 | \ganttgroup{Training}{5}{5} \\ 419 | \ganttgroup{Dissemination}{23}{24} \\ 420 | \ganttgroup{Communication}{12}{12} \\ 421 | \ganttgroup{Other}{18}{21} 422 | \end{ganttchart} 423 | 424 | \end{center} 425 | \caption{Example Gantt Chart} 426 | \end{figure} 427 | 428 | 429 | 430 | 431 | \subsection{Appropriateness of the allocation of tasks and resources} 432 | \label{sec:implementation_resources} 433 | 434 | Describe how the work planning and the resources mobilised will ensure that he research and training objectives will be reached. 435 | 436 | \medskip\noindent 437 | Explain why the amount of person-months is appropriate in relation to the activities proposed. 438 | 439 | 440 | 441 | 442 | 443 | \subsection{Appropriateness of the management structure and procedures, including risk management} 444 | \label{sec:implementation_management} 445 | 446 | Describe the: 447 | 448 | \begin{itemize} 449 | \item Organization and management structure, as well as the progress monitoring mechanisms put in place, to ensure that objectives are reached 450 | \item Research and/or administrative risks that might endanger reaching the action objectives and the contingency plans to be put in place should risk occur 451 | \item Involvement of entity with a capital or legal link to the beneficiary (in particular, name of the entity, type of link with the beneficiary and tasks to be carried out), if applicable 452 | \end{itemize} 453 | 454 | 455 | 456 | 457 | 458 | \subsection{Appropriateness of the institutional environment (infrastructure)} 459 | \label{sec:implementation_infrastructure} 460 | 461 | The active contribution of the beneficiary to the research and training activities should be described. 462 | For Global Fellowships the role of partner organisations in Third Countries for the outgoing phase should appear. 463 | 464 | \begin{itemize} 465 | \item Give a description of the main tasks and commitments of the beneficiary and all partner organisations (if applicable). 466 | \item Describe the infrastructure, logistics, facilities offered in as far they are necessary for the good implementation of the action. 467 | \end{itemize} 468 | 469 | 470 | 471 | 472 | 473 | \markEndPageLimit 474 | -------------------------------------------------------------------------------- /doc2.tex: -------------------------------------------------------------------------------- 1 | % !TEX root = ./IF-2017-Part_B.tex 2 | 3 | \newpage 4 | \addcontentsline{toc}{section}{\hspace{-0.5cm}Document 2} 5 | \section{CV of the Experienced Researcher} 6 | \label{sec:cv} 7 | 8 | The CV is intrinsic to the evaluation of the whole proposal and is assessed throughout the 3 evaluation criteria by the expert evaluators. 9 | Please make sure that the information between part A and B is fully consistent. 10 | 11 | \medskip\noindent 12 | Applicants without a doctorate should clearly justify any period of Full-Time 13 | Equivalent Research Experience in the CV part B (section~\ref{sec:cv}). It is essential that the 14 | CV clearly explains how the Research Experience is calculated, following this 15 | template. 16 | 17 | \medskip\noindent 18 | This section should be limited to maximum 5 pages and should include \textbf{the standard academic and research record}. 19 | Any research career gaps and/or unconventional paths should be clearly explained so that this can be fairly assessed by the independent evaluators. 20 | 21 | \medskip\noindent 22 | The {\em experienced researchers} must provide a list of achievements reflecting their track record, if applicable: 23 | 24 | \begin{enumerate} 25 | \item \textbf{Publications} in peer-reviewed scientific journals, peer-reviewed conference proceedings and/or monographs of their respective research fields, indicating also the number of citations (excluding self-citations) they have attracted. 26 | \item Granted \textbf{patent(s)}. 27 | \item \textbf{Research monographs, chapters} in collective volumes and any translations thereof. 28 | \item \textbf{Invited presentations} to peer-reviewed, internationally established conferences and/or international advanced schools. 29 | \item \textbf{Research expeditions} led by that the {\em experienced researcher}. 30 | \item \textbf{Organisation of International conferences} in the field of the researcher (membership in the steering and/or programme committee). 31 | \item Examples of \textbf{participation in industrial innovation}. 32 | \item \textbf{Prizes and Awards}. 33 | \item \textbf{Funding} received so far. 34 | \item \textbf{Supervising} and \textbf{mentoring} activities. 35 | \end{enumerate} 36 | 37 | 38 | 39 | 40 | 41 | \newpage 42 | \section{Capacity of the Participating Organisations} 43 | \label{sec:capacities} 44 | 45 | Beneficiaries and partner organisations must complete the appropriate table below. 46 | 47 | \medskip\noindent 48 | Complete one table (min font size: 9) of maximum \ul{one page per beneficiary and one page per partner organisation}. 49 | The expert evaluators will be instructed to disregard content above this limit. 50 | \vspace{\baselineskip} 51 | 52 | 53 | \begin{table}[h!] 54 | {\fontsize{9bp}{1em}\selectfont % should be 9pt 55 | \noindent\begin{tabular}{|>{\raggedright}p{.25\textwidth}|p{.7\textwidth}|}\hline 56 | \multicolumn{2}{|l|}{\cellcolor{gray!50}\textbf{Beneficiary X}} \\\hline 57 | \textbf{General Description} & 58 | 59 | \\\hline 60 | \textbf{Role and Profile of key persons (supervisor)} & 61 | {\em (names, title, qualifications of the main supervisor)} 62 | {\em } 63 | \\\hline 64 | \textbf{Key Research Facilities, Infrastructure and Equipment} & 65 | {\em Demonstrate that the beneficiary has sufficient facilities and infrastructure to host and/or offer a suitable environment for training and transfer of knowledge to the recruited experienced researcher. 66 | \newline 67 | If applicable, indicate the name of the entity with a capital or 68 | legal link to the beneficiary and its role in the action. 69 | } 70 | \\\hline 71 | \textbf{Independent research premises?} & 72 | {\em Please explain the status of the beneficiary's research facilities\----i.e. are they owned by the beneficiary or rented by it? Are its research premises wholly independent from other entities? 73 | \newline 74 | If applicable, indicate the name of the entity with a capital or 75 | legal link to the beneficiary and describe the nature of the 76 | link. 77 | } 78 | \\\hline 79 | \textbf{Previous Involvement in Research and Training Programmes} & 80 | {\em Detail any (maximum 5) relevant EU, national or international research and training actions/projects in which the beneficiary has previously participated.} 81 | \\\hline 82 | \textbf{Current involvement in Research and Training Programmes} & 83 | {\em Detail the EU and/or national research and training actions in which the beneficiary is currently participating.} 84 | \\\hline 85 | \textbf{Relevant Publications and/or research/innovation products} & 86 | {\em (Max 5) Only list items (co-)produced by the supervisor} 87 | \\\hline 88 | \multicolumn{2}{|l|}{\cellcolor{gray!50}\textbf{Partner Organisation Y}} \\\hline 89 | \textbf{General description} & 90 | \\\hline 91 | \textbf{Key Persons and Expertise (supervisor)} & 92 | \\\hline 93 | \textbf{Key Research facilities, infrastructure and equipment} & 94 | \\\hline 95 | \textbf{Previous and Current Involvement in Research and Training Programmes} & 96 | \\\hline 97 | \textbf{Relevant Publications and/or research/innovation product} & 98 | {\em (Max 3)} 99 | \\\hline 100 | \end{tabular}} 101 | \end{table} 102 | 103 | 104 | 105 | 106 | \newpage 107 | \section{Ethical Issues} 108 | \label{sec:ethics} 109 | 110 | Compliance with the relevant ethics provisions is essential from the beginning to the end of the action and is an integral part of research funded by the European Union within Horizon 2020. 111 | 112 | \medskip\noindent 113 | Applicants submitting research proposals for funding with Marie Sk\l{}odowska-Curie actions in Horizon 2020 should demonstrate proactively that they are aware of and will comply with European and national legislation and fundamental ethical principles, including those reflected in the \href{http://www.europarl.europa.eu/charter/pdf/text_en.pdf}{Charter of Fundamental Rights of the European Union} and the \href{http://www.echr.coe.int/Documents/Convention_ENG.pdf}{European Convention on Human Rights and its Supplementary Protocols}. 114 | 115 | \medskip\noindent 116 | Please be aware that it is the applicants' responsibility to identify any potential ethical issue, 117 | to handle the ethical aspects of the proposal and to detail how these aspects will be addressed. 118 | 119 | \bigskip\noindent 120 | {\large {\bf \ul{The Ethics Review Procedure in Horizon 2020}}} 121 | 122 | \medskip\noindent 123 | All proposals above threshold and considered for funding will undergo an Ethics Review carried out by independent ethics experts. 124 | When submitted a proposal to Horizon 2020, all applicants are required to complete an ``{\bf Ethics Issues Table (EIT)}'' in the Part A of the proposal. 125 | Applicants who flag ethical issues in the EIT have to also complete a more in-depth {\bf Ethics Self-Assessment in Part B.} 126 | 127 | \medskip\noindent 128 | The ethics self-assessment will become part of the Grant Agreement and may thus lead to binding obligations that may later on be checked by ethics checks, reviews and audits. 129 | 130 | \medskip\noindent 131 | For more details, please refer to the H2020 \href{http://ec.europa.eu/research/participants/data/ref/h2020/grants_manual/hi/ethics/h2020_hi_ethics-self-assess_en.pdf}{``How to complete your Ethics Self-Assessment''} guide. 132 | 133 | \bigskip\noindent 134 | {\large {\bf \ul{Ethics Self-Assessment (Part B)}}} 135 | 136 | \medskip\noindent 137 | The Ethics Self-Assessment must: 138 | 139 | {\bf 140 | \begin{enumerate}[leftmargin=*, label=\arabic*)] 141 | \item Describe how the proposal meets the EU and national legal and ethics requirements of the country/countries where the task raising ethical is to be carried out. 142 | \end{enumerate} 143 | } 144 | 145 | \medskip\noindent 146 | For more information on how to deal with Third Countries (in the context of ethics 147 | appraisal, Third Country refers to non-EU country; Associated Countries are "ethics" 148 | TC) please see Article 34 of the \href{http://ec.europa.eu/research/participants/data/ref/h2020/grants_manual/amga/h2020-amga_en.pdf}{Annotated Model Grant Agreement}, 149 | as well as the following \href{http://ec.europa.eu/justice/data-protection/international-transfers/adequacy/index_en.htm}{link}. 150 | Please ensure and confirm that the research performed outside the EU 151 | is compatible with the Union, National and International legislation and could have 152 | been legally conducted in one of the EU Member States. 153 | 154 | \medskip\noindent 155 | Please list the documents provided with their expiry date. 156 | 157 | \medskip\noindent 158 | Ensure early compliance of the proposed research with EU and national legislation on ethics in research. 159 | Should your proposal be selected for funding, 160 | you will be required to confirm that you have obtained the following documents (if applicable): 161 | 162 | \begin{enumerate}[label=(\alph*)] 163 | \item any ethics committee opinion required under national law and 164 | \item any notification or authorisation for activities raising ethical issues required under national and/or European law 165 | \end{enumerate} 166 | 167 | \noindent 168 | needed for implementing the action tasks in question. 169 | 170 | \medskip\noindent 171 | If you have not already applied for/received the ethics approval/required ethics documents when submitting the proposal, 172 | please indicate in this section the approximate date when you will obtain the missing approval/any other ethics documents. 173 | Please state explicitly that you will not proceed with any research with ethical implications before 174 | obtaining the necessary authorizations/opinions. 175 | 176 | \medskip\noindent 177 | \fcolorbox{black}{gray!50}{\parbox{\textwidth}{ 178 | {\em The documents must be kept on file and be submitted upon request by the beneficiary 179 | to the Agency (see Article 52). If they are not in English, they must be submitted 180 | together with an English summary, which shows that the action tasks in question are 181 | covered and includes the conclusions of the committee or authority concerned (if 182 | available).} 183 | 184 | \medskip\noindent 185 | {\em If you plan to request these ethics documents specifically for your} proposed action\em{, your request must contain an explicit reference to the} action\em{'s title.} 186 | }} 187 | 188 | \bigskip 189 | {\bf 190 | \begin{enumerate}[leftmargin=*, label=\arabic*), start=2] 191 | \item Explain in detail how you intend to address the ethical issues flagged, in particular with regard to: 192 | \begin{itemize} 193 | \item {\normalfont the research {\bf objectives} (e.g., study of vulnerable populations, cooperation with a Third Country, etc.);} 194 | \item {\normalfont the research {\bf methodology} (e.g., clinical trials, involvement of children and related information and consent/assent procedures, data protection and privacy issues related to data collected, etc.);} 195 | \item {\normalfont the potential {\bf impact} of the research (e.g. dual use issues, environmental damage, malevolent use, etc.);} 196 | \item {\normalfont appropriate health and safety procedures - conforming to relevant local/national guidelines/legislation - for the staff involved;} 197 | \item {\normalfont possible harm to the environment the research might cause, (as an example: environmental risks of nanomaterials), and measures that will be taken to mitigate the risks.} 198 | \end{itemize} 199 | \end{enumerate} 200 | } 201 | 202 | 203 | 204 | 205 | \newpage 206 | \section{Letter of Commitment (GF only)} 207 | \label{sec:letters} 208 | 209 | For the Global Fellowship proposals, a letter of Commitment \textbf{of the partner 210 | organisations} (hosting the outgoing phase in a third country) must be included in part 211 | B-2 to ensure their real and active participation. these should not be attached as a 212 | separate PDF file or as an embedded file since this makes them invisible. 213 | 214 | \medskip\noindent 215 | GF Proposals which fail to include a letter of commitment of the partner organisation 216 | will be declared \textbf{inadmissible}. 217 | 218 | \medskip\noindent 219 | Minimum requirements for the letter of commitment: 220 | 221 | \begin{itemize} 222 | \item \textbf{heading} or \textbf{stamp} from the institution; 223 | \item up-to-date (may not be dated prior to the call publication); 224 | \item the text must demonstrate the will to actively participate in the (identified) proposed action and the precise role; 225 | \end{itemize} 226 | 227 | \noindent 228 | Please note that no template for these letters is provided, only general rules. 229 | 230 | 231 | 232 | 233 | 234 | \newpage 235 | \label{sec:endpage} 236 | \vspace{15mm} 237 | \begin{center} 238 | 239 | 240 | \Large{ 241 | 242 | 243 | \textbf{ENDPAGE} 244 | 245 | \vspace{15mm} 246 | MARIE SK\L{}ODOWSKA-CURIE ACTIONS\\ 247 | \vspace{1cm} 248 | 249 | \textbf{\acf{IF}}\\ 250 | \textbf{Call: H2020-MSCA-IF-2017} 251 | \vspace{2cm} 252 | 253 | PART B 254 | \vspace{2.5cm} 255 | 256 | ``{\sc \ac{PropAcronym}\xspace}'' 257 | \vspace{2cm} 258 | 259 | \textbf{This proposal is to be evaluated as:} 260 | \vspace{.5cm} 261 | 262 | \textbf{[EF-ST] [EF-CAR] [EF-RI] [EF-SE] [GF]}\\ 263 | } 264 | \large{[Delete as appropriate]} 265 | 266 | \end{center} 267 | \vspace{1cm} 268 | -------------------------------------------------------------------------------- /genyoungtabtikz.sty: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `genyoungtabtikz.sty'. 3 | %% 4 | %% Copyright 2013,2014,2015 Matthew Fayers. 5 | %% 6 | %% This work may be distributed and/or modified under the 7 | %% conditions of the LaTeX Project Public License, either version 1.3 8 | %% of this license or (at your option) any later version. 9 | %% The latest version of this license is in 10 | %% http://www.latex-project.org/lppl.txt 11 | %% and version 1.3 or later is part of all distributions of LaTeX 12 | %% version 2005/12/01 or later. 13 | %% 14 | %% This work has the LPPL maintenance status `maintained'. 15 | %% 16 | %% The Current Maintainer of this work is Matthew Fayers (m.fayers@qmul.ac.uk). 17 | %% This work consists of the file genyoungtabtikz.sty 18 | %% 19 | %% This package is inspired by (and retains some tiny code fragments from) the youngtab package, Copyright 1996,98,99 Volker B"orchers and Stefan Gieseke. 20 | \NeedsTeXFormat{LaTeX2e} 21 | \ProvidesPackage{genyoungtabtikz} 22 | [2015/08/24 v1.12; Macros for Young tableaux, using Tikz] 23 | \RequirePackage{tikz} 24 | \RequirePackage{calc} 25 | \newdimen\g@b@xdim 26 | \newdimen\g@tempdim 27 | \newdimen\g@boxdim \g@boxdim=13pt 28 | \newdimen\g@boxdimx \g@boxdimx=13pt 29 | \newdimen\g@boxdimy \g@boxdimy=13pt 30 | \newdimen\g@xcoord 31 | \newdimen\g@ycoord 32 | \newdimen\g@xpos 33 | \def\Yboxdim#1{\g@boxdimx=#1\g@boxdimy=#1} 34 | \def\Yboxdimx#1{\g@boxdimx=#1} 35 | \def\Yboxdimy#1{\g@boxdimy=#1} 36 | \newdimen\g@linethick \g@linethick=.3pt 37 | \def\Ylinethick#1{\g@linethick=#1} 38 | \newif\ifg@vcenter \g@vcenterfalse 39 | \def\Yvcentermath#1{\ifnum #1=0 \g@vcenterfalse\else\g@vcentertrue\fi} 40 | \newif\ifg@stdtext \g@stdtextfalse 41 | \newif\ifg@french \g@frenchfalse 42 | \newif\ifg@russian \g@russianfalse 43 | \newif\ifg@addables \g@addablesfalse 44 | \newif\ifg@internals \g@internalstrue 45 | \newif\ifg@removables \g@removablestrue 46 | \newif\ifg@tabloid \g@tabloidfalse 47 | \def\Ystdtext#1{\ifnum #1=0 \g@stdtextfalse\else\g@stdtexttrue\fi} 48 | \def\Yaddables#1{\ifnum #1=0 \g@addablesfalse\else\g@addablestrue\fi} 49 | \def\Yremovables#1{\ifnum #1=0 \g@removablesfalse\g@internalsfalse\else\g@removablestrue\fi} 50 | \def\Yinternals#1{\ifnum #1=0 \g@internalsfalse\else\g@removablestrue\g@internalstrue\fi} 51 | \def\g@filcol{white} 52 | \def\Yfillcolor#1{\def\g@filcol{#1}} 53 | \def\Yfillcolour#1{\def\g@filcol{#1}} 54 | \def\g@lincol{black} 55 | \def\Ylinecolor#1{\def\g@lincol{#1}} 56 | \def\Ylinecolour#1{\def\g@lincol{#1}} 57 | \def\g@nodcol{black} 58 | \def\Ynodecolor#1{\def\g@nodcol{#1}} 59 | \def\Ynodecolour#1{\def\g@nodcol{#1}} 60 | \def\g@filopa{1} 61 | \def\Yfillopacity#1{\def\g@filopa{#1}} 62 | \DeclareOption{vcentermath}{\g@vcentertrue} 63 | \DeclareOption{stdtext}{\g@stdtexttrue} 64 | \DeclareOption{french}{\g@frenchtrue} 65 | \DeclareOption{French}{\g@frenchtrue} 66 | \DeclareOption{russian}{\g@frenchtrue\g@russiantrue} 67 | \DeclareOption{Russian}{\g@frenchtrue\g@russiantrue} 68 | \DeclareOption*{\PackageWarning{genyoungtabtikz}{% 69 | Unknown option `\CurrentOption' (Known:\MessageBreak 70 | `vcentermath', `stdtext', `french', `French', `russian', `Russian'.)}} 71 | \ProcessOptions\relax 72 | \def\YFrench{\g@frenchtrue\g@russianfalse} 73 | \def\Yfrench{\g@frenchtrue\g@russianfalse} 74 | \def\YEnglish{\g@frenchfalse\g@russianfalse} 75 | \def\Yenglish{\g@frenchfalse\g@russianfalse} 76 | \def\YRussian{\g@frenchtrue\g@russiantrue} 77 | \def\Yrussian{\g@frenchtrue\g@russiantrue} 78 | \newdimen\g@adder 79 | \newdimen\g@line 80 | \newdimen\g@xshifting 81 | \newdimen\g@yshifting 82 | \newcount\g@counter 83 | \newcount\g@counting 84 | \newcounter{yrescount} 85 | \newcounter{ystartrow} 86 | \newdimen\g@shift 87 | \newdimen\g@dep 88 | \newif\ifg@islast 89 | \newif\ifg@cont 90 | \newcount\g@corner \g@corner0 91 | \def\Ycorner#1{\g@corner=#1} 92 | \newcounter{g@c@rner}\setcounter{g@c@rner}0 93 | \newcount\g@baselineshifter 94 | \newcounter{blockheight} 95 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%argument tests 96 | \def\g@lastargtest#1,#2 {\if\space #2 \g@islasttrue\else\g@islastfalse\fi}%tests whether the first comma is followed by a space 97 | \def\g@singletest#1#2. {\if\space #2 \g@islasttrue\else\g@islastfalse\fi}%tests whether the remaining bit has only one argument 98 | \def\g@countrows#1,#2 {\if\space #2 \g@counter=0\else\g@countrows#2 % 99 | \advance\g@counter1\fi} 100 | \def\g@strip(#1^ ){#1} 101 | \def\g@rowsinblk(#1^#2){\if\space#2\g@counting=1\else\g@counting=\g@strip(#2)\fi}% 102 | \def\g@countrowsblock#1,#2 {\if\space #2 \g@counter=-1\else\g@countrowsblock#2 % 103 | \fi\g@rowsinblk(#1^ )\advance\g@counter\g@counting} 104 | \def\g@setbaselineshifter{\ifg@vcenter\ifg@french\g@baselineshifter=-1\else\g@baselineshifter=1\fi\else\g@baselineshifter=0\fi} 105 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%Young diagrams 106 | \def\g@setblk(#1^ ){\setcounter{blockheight}{#1}} 107 | 108 | \def\g@emptyblock(#1^#2){\if\space#2\setcounter{blockheight}1\else\g@setblk(#2)\fi\setlength{\g@adder}{\value{blockheight}\g@boxdimy}% 109 | \ifg@french\draw[\g@lincol,line width=\g@linethick,fill=\g@filcol,fill opacity=\g@filopa,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos,\g@ycoord)rectangle++(#1*\g@boxdimx,\value{blockheight}*\g@boxdimy);% 110 | \draw[\g@lincol,line width=\g@linethick,xstep=\g@boxdimx,ystep=\g@boxdimy,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos,\g@ycoord)grid++(#1*\g@boxdimx,\value{blockheight}*\g@boxdimy);% 111 | \advance\g@ycoord\g@adder% 112 | \else\draw[\g@lincol,line width=\g@linethick,fill=\g@filcol,fill opacity=\g@filopa,fill opacity=\g@filopa,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos,\g@ycoord+\g@boxdimy-\value{blockheight}*\g@boxdimy)rectangle++(#1*\g@boxdimx,\value{blockheight}*\g@boxdimy);% 113 | \draw[\g@lincol,line width=\g@linethick,xstep=\g@boxdimx,ystep=\g@boxdimy,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos,\g@ycoord+\g@boxdimy-\value{blockheight}*\g@boxdimy)grid++(#1*\g@boxdimx,\value{blockheight}*\g@boxdimy);% 114 | \advance\g@ycoord -\g@adder\fi} 115 | 116 | \def\g@yng(#1,#2){\g@emptyblock(#1^ )\g@lastargtest#2, \ifg@islast\g@emptyblock(#2^ )\else\g@yng(#2)\fi} 117 | 118 | \def\tyng(#1,#2,#3){\g@xpos=0cm\g@ycoord=0cm\g@xshifting=#1,\g@yshifting=#2,\g@lastargtest#3, % 119 | \ifg@islast\g@emptyblock(#3^ )\else\g@yng(#3)\fi} 120 | 121 | \def\yngxy(#1,#2,#3){\settoheight\g@shift{1}\settodepth\g@dep{1}\g@countrowsblock#3, % 122 | \g@setbaselineshifter% 123 | \tikz[xscale=#1,yscale=#2,baseline=.5*#2*\g@boxdimy-.5*\g@shift-.5*#2*\g@counter*\g@baselineshifter*\g@boxdimy, rotate=\ifg@russian45\else0\fi]{\tyng(0cm,0cm,#3)}} 124 | 125 | \def\yngs(#1,#2){\yngxy(#1,#1,#2)} 126 | \def\yngx(#1,#2){\yngxy(#1,1,#2)} 127 | \def\yngy(#1,#2){\yngxy(1,#1,#2)} 128 | \def\yng(#1){\yngxy(1,1,#1)} 129 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%e-residue diagrams 130 | \def\g@reducec@rner(#1){\ifnum\value{g@c@rner}=#1\addtocounter{g@c@rner}{-#1}\g@reducec@rner(#1)\else\ifnum\value{g@c@rner}>#1\addtocounter{g@c@rner}{-#1}\g@reducec@rner(#1)\else\ifnum\value{g@c@rner}<0\addtocounter{g@c@rner}{#1}\g@reducec@rner(#1)\fi\fi\fi} 131 | 132 | \def\g@setc@rner(#1){\setcounter{g@c@rner}\g@corner\ifnum#1=0\else\g@reducec@rner(#1)\fi} 133 | 134 | %y@neblockresboxes arguments: e-value, residue at start of first row, length of row^number of rows 135 | \def\g@neblockresboxes(#1,#2,#3^#4){% 136 | \if\space#4\setcounter{blockheight}1\else\g@setblk(#4)\fi% 137 | \setlength{\g@adder}{\value{blockheight}\g@boxdimy}% 138 | \ifg@french% 139 | \draw[\g@lincol,line width=\g@linethick,fill=\g@filcol,fill opacity=\g@filopa,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos,\g@ycoord)rectangle++(#3*\g@boxdimx,\value{blockheight}*\g@boxdimy);% 140 | \draw[\g@lincol,line width=\g@linethick,xstep=\g@boxdimx,ystep=\g@boxdimy,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos,\g@ycoord)grid++(#3*\g@boxdimx,\value{blockheight}*\g@boxdimy);% 141 | \else% 142 | \draw[\g@lincol,line width=\g@linethick,fill=\g@filcol,fill opacity=\g@filopa,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos,\g@ycoord+\g@boxdimy-\value{blockheight}*\g@boxdimy)rectangle++(#3*\g@boxdimx,\value{blockheight}*\g@boxdimy);% 143 | \draw[\g@lincol,line width=\g@linethick,xstep=\g@boxdimx,ystep=\g@boxdimy,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos,\g@ycoord+\g@boxdimy-\value{blockheight}*\g@boxdimy)grid++(#3*\g@boxdimx,\value{blockheight}*\g@boxdimy);% 144 | \fi% 145 | \setcounter{yrescount}{#2}\g@counter=#3% 146 | \ifg@addables% 147 | \foreach\x in{1,...,\g@counter}% 148 | {\addtocounter{yrescount}1\ifnum\value{yrescount}=#1\setcounter{yrescount}0\fi}% 149 | \draw[\g@nodcol,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos+\g@counter*\g@boxdimx+.5*\g@boxdimx,-.5*\g@dep+0.5*\g@boxdimy+\g@ycoord-\g@boxdimy+\g@boxdimy)node{$\vphantom1\smash{\theyrescount}$};% 150 | \foreach\x in{1,...,\g@counter}% 151 | {\addtocounter{yrescount}{-1}\ifnum\value{yrescount}=-1\addtocounter{yrescount}#1\fi}% 152 | \fi% 153 | \advance\g@counter-1% 154 | \ifg@internals 155 | \foreach\y in {1,...,\value{blockheight}}% 156 | {% 157 | \ifg@french% 158 | \draw[\g@nodcol,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos+.5*\g@boxdimx,-.5*\g@dep+0.5*\g@boxdimy+\g@ycoord-\g@boxdimy+\y*\g@boxdimy)node{$\vphantom1\smash{\theyrescount}$};% 159 | \else% 160 | \draw[\g@nodcol,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos+.5*\g@boxdimx,-.5*\g@dep+0.5*\g@boxdimy+\g@ycoord+\g@boxdimy-\y*\g@boxdimy)node{$\vphantom1\smash{\theyrescount}$};% 161 | \fi% 162 | \ifnum\g@counter>0% 163 | \foreach\x in{1,...,\g@counter}% 164 | {% 165 | \addtocounter{yrescount}1\ifnum\value{yrescount}=#1\setcounter{yrescount}0\fi% 166 | \ifg@french% 167 | \draw[\g@nodcol,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos+\x*\g@boxdimx+.5*\g@boxdimx,-.5*\g@dep+0.5*\g@boxdimy+\g@ycoord-\g@boxdimy+\y*\g@boxdimy)node{$\vphantom1\smash{\theyrescount}$};% 168 | \else% 169 | \draw[\g@nodcol,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos+\x*\g@boxdimx+.5*\g@boxdimx,-.5*\g@dep+0.5*\g@boxdimy+\g@ycoord+\g@boxdimy-\y*\g@boxdimy)node{$\vphantom1\smash{\theyrescount}$};% 170 | \fi% 171 | }% 172 | \fi% 173 | \foreach\x in{0,...,\g@counter}% 174 | {\addtocounter{yrescount}{-1}\ifnum\value{yrescount}=-1\addtocounter{yrescount}#1\fi}% 175 | }% 176 | \else 177 | \ifg@removables% 178 | \ifnum\value{blockheight}>1% 179 | \foreach\y in {2,...,\value{blockheight}}% 180 | {\addtocounter{yrescount}{-1}\ifnum\value{yrescount}=-1\addtocounter{yrescount}#1\fi}% 181 | \else% 182 | \addtocounter{yrescount}0% why is this fudge needed? I don't understand 183 | \fi% 184 | \ifnum\g@counter>0% 185 | \foreach\x in{1,...,\g@counter}% 186 | {\addtocounter{yrescount}1\ifnum\value{yrescount}=#1\setcounter{yrescount}0\fi}% 187 | \fi% 188 | \ifg@french% 189 | \draw[\g@nodcol,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos+\g@counter*\g@boxdimx+.5*\g@boxdimx,-.5*\g@dep+0.5*\g@boxdimy+\g@ycoord-\g@boxdimy+\value{blockheight}*\g@boxdimy)node{$\vphantom1\smash{\theyrescount}$};% 190 | \else% 191 | \draw[\g@nodcol,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos+\g@counter*\g@boxdimx+.5*\g@boxdimx,-.5*\g@dep+0.5*\g@boxdimy+\g@ycoord+\g@boxdimy-\value{blockheight}*\g@boxdimy)node{$\vphantom1\smash{\theyrescount}$};% 192 | \fi% 193 | \foreach\x in{0,...,\g@counter}% 194 | {\addtocounter{yrescount}{-1}\ifnum\value{yrescount}=-1\addtocounter{yrescount}#1\fi}% 195 | \else 196 | \foreach\y in {1,...,\value{blockheight}}% 197 | {\addtocounter{yrescount}{-1}\ifnum\value{yrescount}=-1\addtocounter{yrescount}#1\fi}% 198 | \fi% 199 | \fi% 200 | \setcounter{ystartrow}{\value{yrescount}}% 201 | \ifg@french\advance\g@ycoord\g@adder\else\advance\g@ycoord -\g@adder\fi% 202 | } 203 | 204 | %y@ungres arguments: e-value, residue at start of row, (remainder of) partition 205 | \def\g@ungres(#1,#2,#3,#4){\setcounter{ystartrow}{#2}\g@neblockresboxes(#1,#2,#3^ )% 206 | \g@lastargtest#4, \ifg@islast\g@neblockresboxes(#1,\value{ystartrow},#4^ )\else\g@ungres(#1,\value{ystartrow},#4)\fi} 207 | 208 | %tyngres arguments: x-coord, y-coord, e-value, partition 209 | \def\tyngres(#1,#2,#3,#4){\g@setc@rner(#3)\g@xpos=0cm\g@ycoord=0cm\g@xshifting=#1,\g@yshifting=#2,\g@lastargtest#4, % 210 | \ifg@islast\g@neblockresboxes(#3,\value{g@c@rner},#4^ )\else\g@ungres(#3,\value{g@c@rner},#4)\fi% 211 | \ifg@addables\draw[\g@nodcol,xshift=\g@xshifting,yshift=\g@yshifting](\g@xpos+.5*\g@boxdimx,-.5*\g@dep+0.5*\g@boxdimy+\g@ycoord-\g@boxdimy+\g@boxdimy)node{$\vphantom1\smash{\theyrescount}$};\fi% 212 | } 213 | 214 | \def\yngresxy(#1,#2,#3,#4){\settoheight\g@shift{1}\settodepth\g@dep{1}\g@countrowsblock#4, % 215 | \g@setbaselineshifter% 216 | \tikz[xscale=#1,yscale=#2,baseline=.5*#2*\g@boxdimy-.5*\g@shift-.5*#2*\g@counter*\g@baselineshifter*\g@boxdimy, rotate=\ifg@russian45\else0\fi]{\tyngres(0cm,0cm,#3,#4)}} 217 | 218 | \def\yngress(#1,#2,#3){\yngresxy(#1,#1,#2,#3)} 219 | \def\yngresx(#1,#2,#3){\yngresxy(#1,1,#2,#3)} 220 | \def\yngresy(#1,#2,#3){\yngresxy(1,#1,#2,#3)} 221 | \def\yngres(#1,#2){\yngresxy(1,1,#1,#2)} 222 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%Young tableaux and tabloids - we now have a global boolean g@tabloid 223 | \def\g@youngbox#1.{%draws a single box with contents #1 224 | \ifg@tabloid% 225 | \draw[fill=\g@filcol,line width=\g@linethick,fill opacity=\g@filopa](\g@xcoord,\g@ycoord)--++(\g@boxdimx,0)++(0,\g@boxdimy)--++(-\g@boxdimx,0);% 226 | \else% 227 | \draw[fill=\g@filcol,line width=\g@linethick,fill opacity=\g@filopa](\g@xcoord,\g@ycoord)rectangle+(\g@boxdimx,\g@boxdimy);% 228 | \fi% 229 | \ifg@stdtext% 230 | \node[\g@nodcol] at(0.5*\g@boxdimx+\g@xcoord,-.5*\g@dep+0.5*\g@boxdimy+\g@ycoord){\vphantom1\smash{#1}};% 231 | \else% 232 | \node[\g@nodcol] at(0.5*\g@boxdimx+\g@xcoord,-.5*\g@dep+0.5*\g@boxdimy+\g@ycoord){$\vphantom1\smash{#1}$};% 233 | \fi% 234 | \advance\g@xcoord\g@boxdimx% 235 | } 236 | 237 | \def\g@newline{% 238 | %\draw[line width=\g@linethick](\g@xpos,\g@ycoord)--(\g@xcoord,\g@ycoord);% 239 | %\draw[line width=\g@linethick](\g@xpos,\g@ycoord+\g@boxdimy)--(\g@xcoord,\g@ycoord+\g@boxdimy);% 240 | \g@xcoord=\g@xpos% 241 | \ifg@french% 242 | \advance\g@ycoord\g@line% 243 | \else% 244 | \advance\g@ycoord -\g@line% 245 | \fi% 246 | \setlength{\g@line}{\g@boxdimy}% 247 | } 248 | 249 | \def\g@youngboxingbrack#1>#2.{%#2 includes a space as its last (and possibly only) character 250 | \g@youngbox#1.% 251 | \if \space #2\else\g@youngboxing#2.\fi% 252 | } 253 | 254 | \def\g@youngboxingcmdbrack#1>#2.{%#2 includes a space as its last (and possibly only) character 255 | #1% 256 | \if \space #2\else\g@youngboxing#2.\fi% 257 | } 258 | 259 | \def\g@youngboxingcmd#1#2.{%#2 includes a space as its last (and possibly only) character 260 | \if <#1% 261 | \g@youngboxingcmdbrack#2.% 262 | \else% 263 | #1% 264 | \if \space #2\else \g@youngboxing#2.\fi% 265 | \fi% 266 | } 267 | 268 | \def\g@youngboxing#1#2.{%#2 includes a space as its last (and possibly only) character 269 | \if ,#1% 270 | \g@newline% 271 | \if \space #2\else\g@youngboxing#2.\fi% 272 | \else% 273 | \if !#1% 274 | \g@youngboxingcmd#2.% 275 | \else% 276 | \if <#1% 277 | \g@youngboxingbrack#2.% 278 | \else% 279 | \g@youngbox#1.% 280 | \if \space #2\else\g@youngboxing#2.\fi% 281 | \fi% 282 | \fi% 283 | \fi% 284 | } 285 | 286 | \def\tyoung(#1,#2,#3){%#1 and #2 coordinates, #3 the stuff defining the tableau 287 | \g@xpos=#1%this gets fixed so that we know where to come back to when we do a new line 288 | \g@xcoord=#1% 289 | \g@ycoord=#2% 290 | \setlength{\g@line}{\g@boxdimy}% 291 | \g@youngboxing#3 .% 292 | %\draw[line width=\g@linethick](\g@xpos,\g@ycoord)--(\g@xcoord,\g@ycoord);% 293 | %\draw[line width=\g@linethick](\g@xpos,\g@ycoord+\g@boxdimy)--(\g@xcoord,\g@ycoord+\g@boxdimy);% 294 | } 295 | 296 | \def\youngxy(#1,#2,#3){\settoheight\g@shift{1}\settodepth\g@dep{1}\g@countrows#3, % 297 | \g@setbaselineshifter 298 | \tikz[baseline=.5*#2*\g@boxdimy-.5*\g@shift-.5*#2*\g@counter*\g@baselineshifter*\g@boxdimy,xscale=#1,yscale=#2, rotate=\ifg@russian45\else0\fi]{\tyoung(0cm,0cm,#3)}% 299 | } 300 | \def\youngs(#1,#2){\youngxy(#1,#1,#2)} 301 | \def\youngx(#1,#2){\youngxy(#1,1,#2)} 302 | \def\youngy(#1,#2){\youngxy(1,#1,#2)} 303 | \def\young(#1){\youngxy(1,1,#1)} 304 | 305 | \def\tyoungtabloid(#1,#2,#3){\g@tabloidtrue\tyoung(#1,#2,#3)\g@tabloidfalse} 306 | \def\youngtabloidxy(#1,#2,#3){\g@tabloidtrue\youngxy(#1,#2,#3)\g@tabloidfalse} 307 | \def\youngtabloids(#1,#2){\youngtabloidxy(#1,#1,#2)} 308 | \def\youngtabloidx(#1,#2){\youngtabloidxy(#1,1,#2)} 309 | \def\youngtabloidy(#1,#2){\youngtabloidxy(1,#1,#2)} 310 | \def\youngtabloid(#1){\youngtabloidxy(1,1,#1)} 311 | 312 | %%%%%%%%%%%%%%%%Generalised Young tableaux 313 | \def\g@emptybigbox#1#2{% 314 | \ifg@french% 315 | \draw[\g@lincol,line width=\g@linethick,fill=\g@filcol,fill opacity=\g@filopa](\g@xcoord,\g@ycoord)rectangle++(#1*\g@boxdimx,#2*\g@boxdimy);% 316 | \else% 317 | \draw[\g@lincol,line width=\g@linethick,fill=\g@filcol,fill opacity=\g@filopa](\g@xcoord,\g@ycoord+\g@boxdimy-#2*\g@boxdimy)rectangle++(#1*\g@boxdimx,#2*\g@boxdimy);% 318 | \fi% 319 | \setlength{\g@adder}{#1\g@boxdimx}\advance\g@xcoord\g@adder% 320 | \setlength{\g@line}{#2\g@boxdimy}% 321 | } 322 | 323 | \def\hdts{abracadabra} 324 | \def\vdts{arbacadarba} 325 | 326 | \def\g@abcbigbox#1#2#3.{% 327 | \ifg@french% 328 | \draw[\g@lincol,line width=\g@linethick,fill=\g@filcol,fill opacity=\g@filopa](\g@xcoord,\g@ycoord)rectangle++(#1*\g@boxdimx,#2*\g@boxdimy);% 329 | \ifx#3\hdts% 330 | \draw[thick,dotted](\g@xcoord+.25*\g@boxdimx,\g@ycoord+#2*.5*\g@boxdimy)--++(#1*\g@boxdimx-.5*\g@boxdimx,0);% 331 | \else% 332 | \ifx#3\vdts% 333 | \draw[thick,dotted](\g@xcoord+.5*#1*\g@boxdimx,\g@ycoord+.25*\g@boxdimy)--++(0,#2*\g@boxdimy-.5*\g@boxdimy);% 334 | \else% 335 | \ifg@stdtext% 336 | \node[\g@nodcol] at(0.5*#1*\g@boxdimx+\g@xcoord,-.5*\g@dep+0.5*#2*\g@boxdimy+\g@ycoord){\vphantom1\smash{#3}};% 337 | \else% 338 | \node[\g@nodcol] at(0.5*#1*\g@boxdimx+\g@xcoord,-.5*\g@dep+0.5*#2*\g@boxdimy+\g@ycoord){$\vphantom1\smash{#3}$};% 339 | \fi% 340 | \fi% 341 | \fi% 342 | \else% 343 | \draw[\g@lincol,line width=\g@linethick,fill=\g@filcol,fill opacity=\g@filopa](\g@xcoord,\g@ycoord+\g@boxdimy-#2*\g@boxdimy)rectangle++(#1*\g@boxdimx,#2*\g@boxdimy);% 344 | \ifx#3\hdts% 345 | \draw[thick,dotted](\g@xcoord+.25*\g@boxdimx,\g@ycoord+\g@boxdimy-#2*.5*\g@boxdimy)--++(#1*\g@boxdimx-.5*\g@boxdimx,0);% 346 | \else% 347 | \ifx#3\vdts% 348 | \draw[thick,dotted](\g@xcoord+.5*#1*\g@boxdimx,\g@ycoord+1.25*\g@boxdimy-#2*\g@boxdimy)--++(0,#2*\g@boxdimy-.5*\g@boxdimy);% 349 | \else% 350 | \ifg@stdtext% 351 | \node[\g@nodcol] at(0.5*#1*\g@boxdimx+\g@xcoord,-.5*\g@dep+\g@boxdimy-0.5*#2*\g@boxdimy+\g@ycoord){\vphantom1\smash{#3}};% 352 | \else% 353 | \node[\g@nodcol] at(0.5*#1*\g@boxdimx+\g@xcoord,-.5*\g@dep+\g@boxdimy-0.5*#2*\g@boxdimy+\g@ycoord){$\vphantom1\smash{#3}$};% 354 | \fi% 355 | \fi% 356 | \fi% 357 | \fi% 358 | \setlength{\g@adder}{#1\g@boxdimx}\advance\g@xcoord\g@adder% 359 | \setlength{\g@line}{#2\g@boxdimy}% 360 | } 361 | 362 | \def\g@emptybignobox#1#2{% 363 | \setlength{\g@adder}{#1\g@boxdimx}\advance\g@xcoord\g@adder% 364 | \setlength{\g@line}{#2\g@boxdimy}% 365 | } 366 | 367 | \def\g@abcbignobox#1#2#3.{% 368 | \ifg@french% 369 | \ifx#3\hdts% 370 | \draw[thick,dotted](\g@xcoord+.25*\g@boxdimx,\g@ycoord+#2*.5*\g@boxdimy)--++(#1*\g@boxdimx-.5*\g@boxdimx,0);% 371 | \else% 372 | \ifx#3\vdts% 373 | \draw[thick,dotted](\g@xcoord+.5*#1*\g@boxdimx,\g@ycoord+.25*\g@boxdimy)--++(0,#2*\g@boxdimy-.5*\g@boxdimy);% 374 | \else% 375 | \ifg@stdtext% 376 | \node[\g@nodcol] at(0.5*#1*\g@boxdimx+\g@xcoord,-.5*\g@dep+0.5*#2*\g@boxdimy+\g@ycoord){\vphantom1\smash{#3}};% 377 | \else% 378 | \node[\g@nodcol] at(0.5*#1*\g@boxdimx+\g@xcoord,-.5*\g@dep+0.5*#2*\g@boxdimy+\g@ycoord){$\vphantom1\smash{#3}$};% 379 | \fi% 380 | \fi% 381 | \fi% 382 | \else% 383 | \ifx#3\hdts% 384 | \draw[thick,dotted](\g@xcoord+.25*\g@boxdimx,\g@ycoord+\g@boxdimy-#2*.5*\g@boxdimy)--++(#1*\g@boxdimx-.5*\g@boxdimx,0);% 385 | \else% 386 | \ifx#3\vdts% 387 | \draw[thick,dotted](\g@xcoord+.5*#1*\g@boxdimx,\g@ycoord+1.25*\g@boxdimy-#2*\g@boxdimy)--++(0,#2*\g@boxdimy-.5*\g@boxdimy);% 388 | \else% 389 | \ifg@stdtext% 390 | \node[\g@nodcol] at(0.5*#1*\g@boxdimx+\g@xcoord,-.5*\g@dep+\g@boxdimy-0.5*#2*\g@boxdimy+\g@ycoord){\vphantom1\smash{#3}};% 391 | \else% 392 | \node[\g@nodcol] at(0.5*#1*\g@boxdimx+\g@xcoord,-.5*\g@dep+\g@boxdimy-0.5*#2*\g@boxdimy+\g@ycoord){$\vphantom1\smash{#3}$};% 393 | \fi% 394 | \fi% 395 | \fi% 396 | \fi% 397 | \setlength{\g@adder}{#1\g@boxdimx}\advance\g@xcoord\g@adder% 398 | \setlength{\g@line}{#2\g@boxdimy}% 399 | } 400 | 401 | \def\g@emptybox{\g@emptybigbox11} 402 | \def\g@emptynobox{\g@emptybignobox11} 403 | \def\g@emptytallbox#1{\g@emptybigbox1#1} 404 | \def\g@emptytallnobox#1{\g@emptybignobox1#1} 405 | \def\g@emptywidebox#1{\g@emptybigbox#11} 406 | \def\g@emptywidenobox#1{\g@emptybignobox#11} 407 | \def\g@abcbox#1.{\g@abcbigbox11#1.} 408 | \def\g@abcnobox#1.{\g@abcbignobox11#1.} 409 | \def\g@abcwidebox#1#2.{\g@abcbigbox#11#2.} 410 | \def\g@abcwidenobox#1#2.{\g@abcbignobox#11#2.} 411 | \def\g@abctallbox#1#2.{\g@abcbigbox1#1#2.} 412 | \def\g@abctallnobox#1#2.{\g@abcbignobox1#1#2.} 413 | 414 | \def\g@boxingcmdbrack#1>#2.{%#2 ends with a space 415 | #1\g@boxing#2.% 416 | } 417 | 418 | \def\g@boxingbignoboxbrack#1#2#3>#4.{%#1,#2 the height and width, #3 the contents, #4 ends with a space 419 | \g@abcbignobox#1#2.\g@boxing#3.% 420 | } 421 | 422 | \def\g@boxingbigboxbrack#1#2#3>#4.{%#1,#2 the height and width, #3 the contents, #4 ends with a space 423 | \g@abcbigbox#1#2.\g@boxing#3.% 424 | } 425 | 426 | \def\g@boxingwidenoboxbrack#1#2>#3.{%#1 the height, #2 the contents, #3 ends with a space 427 | \g@abcwidenobox#1#2.\g@boxing#3.% 428 | } 429 | 430 | \def\g@boxingwideboxbrack#1#2>#3.{%#1 the height, #2 the contents, #3 ends with a space 431 | \g@abcwidebox#1#2.\g@boxing#3.% 432 | } 433 | 434 | \def\g@boxingtallnoboxbrack#1#2>#3.{%#1 the height, #2 the contents, #3 ends with a space 435 | \g@abctallnobox#1#2.\g@boxing#3.% 436 | } 437 | 438 | \def\g@boxingtallboxbrack#1#2>#3.{%#1 the height, #2 the contents, #3 ends with a space 439 | \g@abctallbox#1#2.\g@boxing#3.% 440 | } 441 | 442 | \def\g@boxingnoboxbrack#1>#2.{%#2 ends with a space 443 | \g@abcnobox#1.\g@boxing#2.% 444 | } 445 | 446 | \def\g@boxingboxbrack#1>#2.{%#2 ends with a space 447 | \g@abcbox#1.\g@boxing#2.% 448 | } 449 | 450 | \def\g@boxingcmda#1#2.{%#1 either a cmd token or the command, #2 includes a space as its last (and possibly only) character 451 | \if ,#1% 452 | \g@newline\g@boxing#2.% 453 | \else% 454 | \if ;#1% 455 | \g@boxingbox#2.% 456 | \else% 457 | \if :#1% 458 | \g@boxingnobox#2.% 459 | \else% 460 | \if |#1% 461 | \g@boxingtallbox#2.% 462 | \else% 463 | \if /#1% 464 | \g@boxingtallnobox#2.% 465 | \else% 466 | \if _#1% 467 | \g@boxingwidebox#2.% 468 | \else% 469 | \if ^#1% 470 | \g@boxingwidenobox#2.% 471 | \else% 472 | \if `#1% 473 | \g@boxingbigbox#2.% 474 | \else% 475 | \if '#1% 476 | \g@boxingbignobox#2.% 477 | \else% 478 | \if !#1% 479 | \g@boxingcmd#2.% 480 | \else% 481 | \if <#1% 482 | \g@boxingcmdbrack#2.% 483 | \else% 484 | #1\g@boxing#2.% 485 | \fi% 486 | \fi% 487 | \fi% 488 | \fi% 489 | \fi% 490 | \fi% 491 | \fi% 492 | \fi% 493 | \fi% 494 | \fi% 495 | \fi% 496 | } 497 | 498 | \def\g@boxingbignoboxa#1#2#3#4.{%#1,#2 width and height, #3 either a cmd token or the nobox contents, #4 includes a space as its last (and possibly only) character 499 | \if ,#3% 500 | \g@emptybigbox#1#2\g@newline\g@boxing#4.% 501 | \else% 502 | \if ;#3% 503 | \g@emptybignobox#1#2\g@boxingbox#4.% 504 | \else% 505 | \if :#3% 506 | \g@emptybignobox#1#2\g@boxingnobox#4.% 507 | \else% 508 | \if |#3% 509 | \g@emptybignobox#1#2\g@boxingtallbox#4.% 510 | \else% 511 | \if /#3% 512 | \g@emptybignobox#1#2\g@boxingtallnobox#4.% 513 | \else% 514 | \if _#3% 515 | \g@emptybignobox#1#2\g@boxingwidebox#4.% 516 | \else% 517 | \if ^#3% 518 | \g@emptybignobox#1#2\g@boxingwidenobox#4.% 519 | \else% 520 | \if `#3% 521 | \g@emptybignobox#1#2\g@boxingbigbox#4.% 522 | \else% 523 | \if '#3% 524 | \g@emptybignobox#1#2\g@boxingbignobox#4.% 525 | \else% 526 | \if !#3% 527 | \g@emptybignobox#1#2\g@boxingcmd#4.% 528 | \else% 529 | \if <#3% 530 | \g@boxingbignoboxbrack#1#2#4.% 531 | \else% 532 | \g@abcbignobox#1#2#3.\g@boxing#4.% 533 | \fi% 534 | \fi% 535 | \fi% 536 | \fi% 537 | \fi% 538 | \fi% 539 | \fi% 540 | \fi% 541 | \fi% 542 | \fi% 543 | \fi% 544 | } 545 | 546 | \def\g@boxingbigboxa#1#2#3#4.{%#1,#2 width and height, #3 either a cmd token or the box contents, #4 includes a space as its last (and possibly only) character 547 | \if ,#3% 548 | \g@emptybigbox#1#2\g@newline\g@boxing#4.% 549 | \else% 550 | \if ;#3% 551 | \g@emptybigbox#1#2\g@boxingbox#4.% 552 | \else% 553 | \if :#3% 554 | \g@emptybigbox#1#2\g@boxingnobox#4.% 555 | \else% 556 | \if |#3% 557 | \g@emptybigbox#1#2\g@boxingtallbox#4.% 558 | \else% 559 | \if /#3% 560 | \g@emptybigbox#1#2\g@boxingtallnobox#4.% 561 | \else% 562 | \if _#3% 563 | \g@emptybigbox#1#2\g@boxingwidebox#4.% 564 | \else% 565 | \if ^#3% 566 | \g@emptybigbox#1#2\g@boxingwidenobox#4.% 567 | \else% 568 | \if `#3% 569 | \g@emptybigbox#1#2\g@boxingbigbox#4.% 570 | \else% 571 | \if '#3% 572 | \g@emptybigbox#1#2\g@boxingbignobox#4.% 573 | \else% 574 | \if !#3% 575 | \g@emptybigbox#1#2\g@boxingcmd#4.% 576 | \else% 577 | \if <#3% 578 | \g@boxingbigboxbrack#1#2#4.% 579 | \else% 580 | \g@abcbigbox#1#2#3.\g@boxing#4.% 581 | \fi% 582 | \fi% 583 | \fi% 584 | \fi% 585 | \fi% 586 | \fi% 587 | \fi% 588 | \fi% 589 | \fi% 590 | \fi% 591 | \fi% 592 | } 593 | 594 | \def\g@boxingwidenoboxa#1#2#3.{%#1 width, #2 either a cmd token or the box contents, #3 includes a space as its last (and possibly only) character 595 | \if ,#2% 596 | \g@emptywidenobox#1\g@newline\g@boxing#3.% 597 | \else% 598 | \if ;#2% 599 | \g@emptywidenobox#1\g@boxingbox#3.% 600 | \else% 601 | \if :#2% 602 | \g@emptywidenobox#1\g@boxingnobox#3.% 603 | \else% 604 | \if |#2% 605 | \g@emptywidenobox#1\g@boxingtallbox#3.% 606 | \else% 607 | \if /#2% 608 | \g@emptywidenobox#1\g@boxingtallnobox#3.% 609 | \else% 610 | \if _#2% 611 | \g@emptywidenobox#1\g@boxingwidebox#3.% 612 | \else% 613 | \if ^#2% 614 | \g@emptywidenobox#1\g@boxingwidenobox#3.% 615 | \else% 616 | \if `#2% 617 | \g@emptywidenobox#1\g@boxingbigbox#3.% 618 | \else% 619 | \if '#2% 620 | \g@emptywidenobox#1\g@boxingbignobox#3.% 621 | \else% 622 | \if !#2% 623 | \g@emptywidenobox#1\g@boxingcmd#3.% 624 | \else% 625 | \if <#2% 626 | \g@boxingwidenoboxbrack#1#3.% 627 | \else% 628 | \g@abcwidenobox#1#2.\g@boxing#3.% 629 | \fi% 630 | \fi% 631 | \fi% 632 | \fi% 633 | \fi% 634 | \fi% 635 | \fi% 636 | \fi% 637 | \fi% 638 | \fi% 639 | \fi% 640 | } 641 | 642 | \def\g@boxingwideboxa#1#2#3.{%#1 width, #2 either a cmd token or the box contents, #3 includes a space as its last (and possibly only) character 643 | \if ,#2% 644 | \g@emptywidebox#1\g@newline\g@boxing#3.% 645 | \else% 646 | \if ;#2% 647 | \g@emptywidebox#1\g@boxingbox#3.% 648 | \else% 649 | \if :#2% 650 | \g@emptywidebox#1\g@boxingnobox#3.% 651 | \else% 652 | \if |#2% 653 | \g@emptywidebox#1\g@boxingtallbox#3.% 654 | \else% 655 | \if /#2% 656 | \g@emptywidebox#1\g@boxingtallnobox#3.% 657 | \else% 658 | \if _#2% 659 | \g@emptywidebox#1\g@boxingwidebox#3.% 660 | \else% 661 | \if ^#2% 662 | \g@emptywidebox#1\g@boxingwidenobox#3.% 663 | \else% 664 | \if `#2% 665 | \g@emptywidebox#1\g@boxingbigbox#3.% 666 | \else% 667 | \if '#2% 668 | \g@emptywidebox#1\g@boxingbignobox#3.% 669 | \else% 670 | \if !#2% 671 | \g@emptywidebox#1\g@boxingcmd#3.% 672 | \else% 673 | \if <#2% 674 | \g@boxingwideboxbrack#1#3.% 675 | \else% 676 | \g@abcwidebox#1#2.\g@boxing#3.% 677 | \fi% 678 | \fi% 679 | \fi% 680 | \fi% 681 | \fi% 682 | \fi% 683 | \fi% 684 | \fi% 685 | \fi% 686 | \fi% 687 | \fi% 688 | } 689 | 690 | \def\g@boxingtallnoboxa#1#2#3.{%#1 height, #2 either a cmd token or the box contents, #3 includes a space as its last (and possibly only) character 691 | \if ,#2% 692 | \g@emptytallnobox#1\g@newline\g@boxing#3.% 693 | \else% 694 | \if ;#2% 695 | \g@emptytallnobox#1\g@boxingbox#3.% 696 | \else% 697 | \if :#2% 698 | \g@emptytallnobox#1\g@boxingnobox#3.% 699 | \else% 700 | \if |#2% 701 | \g@emptytallnobox#1\g@boxingtallbox#3.% 702 | \else% 703 | \if /#2% 704 | \g@emptytallnobox#1\g@boxingtallnobox#3.% 705 | \else% 706 | \if _#2% 707 | \g@emptytallnobox#1\g@boxingwidebox#3.% 708 | \else% 709 | \if ^#2% 710 | \g@emptytallnobox#1\g@boxingwidenobox#3.% 711 | \else% 712 | \if `#2% 713 | \g@emptytallnobox#1\g@boxingbigbox#3.% 714 | \else% 715 | \if '#2% 716 | \g@emptytallnobox#1\g@boxingbignobox#3.% 717 | \else% 718 | \if !#2% 719 | \g@emptytallnobox#1\g@boxingcmd#3.% 720 | \else% 721 | \if <#2% 722 | \g@boxingtallnoboxbrack#1#3.% 723 | \else% 724 | \g@abctallnobox#1#2.\g@boxing#3.% 725 | \fi% 726 | \fi% 727 | \fi% 728 | \fi% 729 | \fi% 730 | \fi% 731 | \fi% 732 | \fi% 733 | \fi% 734 | \fi% 735 | \fi% 736 | } 737 | 738 | \def\g@boxingtallboxa#1#2#3.{%#1 height, #2 either a cmd token or the box contents, #3 includes a space as its last (and possibly only) character 739 | \if ,#2% 740 | \g@emptytallbox#1\g@newline\g@boxing#3.% 741 | \else% 742 | \if ;#2% 743 | \g@emptytallbox#1\g@boxingbox#3.% 744 | \else% 745 | \if :#2% 746 | \g@emptytallbox#1\g@boxingnobox#3.% 747 | \else% 748 | \if |#2% 749 | \g@emptytallbox#1\g@boxingtallbox#3.% 750 | \else% 751 | \if /#2% 752 | \g@emptytallbox#1\g@boxingtallnobox#3.% 753 | \else% 754 | \if _#2% 755 | \g@emptytallbox#1\g@boxingwidebox#3.% 756 | \else% 757 | \if ^#2% 758 | \g@emptytallbox#1\g@boxingwidenobox#3.% 759 | \else% 760 | \if `#2% 761 | \g@emptytallbox#1\g@boxingbigbox#3.% 762 | \else% 763 | \if '#2% 764 | \g@emptytallbox#1\g@boxingbignobox#3.% 765 | \else% 766 | \if !#2% 767 | \g@emptytallbox#1\g@boxingcmd#3.% 768 | \else% 769 | \if <#2% 770 | \g@boxingtallboxbrack#1#3.% 771 | \else% 772 | \g@abctallbox#1#2.\g@boxing#3.% 773 | \fi% 774 | \fi% 775 | \fi% 776 | \fi% 777 | \fi% 778 | \fi% 779 | \fi% 780 | \fi% 781 | \fi% 782 | \fi% 783 | \fi% 784 | } 785 | 786 | \def\g@boxingnoboxa#1#2.{%#1 either a cmd token or the box contents, #2 includes a space as its last (and possibly only) character 787 | \if ,#1% 788 | \g@emptynobox\g@newline\g@boxing#2.% 789 | \else% 790 | \if ;#1% 791 | \g@emptynobox\g@boxingbox#2.% 792 | \else% 793 | \if :#1% 794 | \g@emptynobox\g@boxingnobox#2.% 795 | \else% 796 | \if |#1% 797 | \g@emptynobox\g@boxingtallbox#2.% 798 | \else% 799 | \if /#1% 800 | \g@emptynobox\g@boxingtallnobox#2.% 801 | \else% 802 | \if _#1% 803 | \g@emptynobox\g@boxingwidebox#2.% 804 | \else% 805 | \if ^#1% 806 | \g@emptynobox\g@boxingwidenobox#2.% 807 | \else% 808 | \if `#1% 809 | \g@emptynobox\g@boxingbigbox#2.% 810 | \else% 811 | \if '#1% 812 | \g@emptynobox\g@boxingbignobox#2.% 813 | \else% 814 | \if !#1% 815 | \g@emptynobox\g@boxingcmd#2.% 816 | \else% 817 | \if <#1% 818 | \g@boxingnoboxbrack#2.% 819 | \else% 820 | \g@abcnobox#1.\g@boxing#2.% 821 | \fi% 822 | \fi% 823 | \fi% 824 | \fi% 825 | \fi% 826 | \fi% 827 | \fi% 828 | \fi% 829 | \fi% 830 | \fi% 831 | \fi% 832 | } 833 | 834 | \def\g@boxingboxa#1#2.{%#1 either a cmd token or the box contents, #2 includes a space as its last (and possibly only) character 835 | \if ,#1% 836 | \g@emptybox\g@newline\g@boxing#2.% 837 | \else% 838 | \if ;#1% 839 | \g@emptybox\g@boxingbox#2.% 840 | \else% 841 | \if :#1% 842 | \g@emptybox\g@boxingnobox#2.% 843 | \else% 844 | \if |#1% 845 | \g@emptybox\g@boxingtallbox#2.% 846 | \else% 847 | \if /#1% 848 | \g@emptybox\g@boxingtallnobox#2.% 849 | \else% 850 | \if _#1% 851 | \g@emptybox\g@boxingwidebox#2.% 852 | \else% 853 | \if ^#1% 854 | \g@emptybox\g@boxingwidenobox#2.% 855 | \else% 856 | \if `#1% 857 | \g@emptybox\g@boxingbigbox#2.% 858 | \else% 859 | \if '#1% 860 | \g@emptybox\g@boxingbignobox#2.% 861 | \else% 862 | \if !#1% 863 | \g@emptybox\g@boxingcmd#2.% 864 | \else% 865 | \if <#1% 866 | \g@boxingboxbrack#2.% 867 | \else% 868 | \g@abcbox#1.\g@boxing#2.% 869 | \fi% 870 | \fi% 871 | \fi% 872 | \fi% 873 | \fi% 874 | \fi% 875 | \fi% 876 | \fi% 877 | \fi% 878 | \fi% 879 | \fi% 880 | } 881 | 882 | \def\g@boxingcmd#1.{%#1 includes a space as its last (and possibly only) character, and possibly starts with the box contents 883 | \if \space #1% 884 | \else% 885 | \g@boxingcmda#1.% 886 | \fi% 887 | } 888 | 889 | \def\g@boxingbignobox#1#2#3.{%#1 and #2 are width and height, #3 includes a space as its last (and possibly only) character, and possibly starts with the box contents 890 | \if \space #3% 891 | \g@emptybignobox#1#2% 892 | \else% 893 | \g@boxingbignoboxa#1#2#3.% 894 | \fi% 895 | } 896 | 897 | \def\g@boxingbigbox#1#2#3.{%#1 and #2 are width and height, #3 includes a space as its last (and possibly only) character, and possibly starts with the box contents 898 | \if \space #3% 899 | \g@emptybigbox#1#2% 900 | \else% 901 | \g@boxingbigboxa#1#2#3.% 902 | \fi% 903 | } 904 | 905 | \def\g@boxingwidenobox#1#2.{%#1 is width, #2 includes a space as its last (and possibly only) character, and possibly starts with the box contents 906 | \if \space #2% 907 | \g@emptywidenobox#1% 908 | \else% 909 | \g@boxingwidenoboxa#1#2.% 910 | \fi% 911 | } 912 | 913 | \def\g@boxingwidebox#1#2.{%#1 is width, #2 includes a space as its last (and possibly only) character, and possibly starts with the box contents 914 | \if \space #2% 915 | \g@emptywidebox#1% 916 | \else% 917 | \g@boxingwideboxa#1#2.% 918 | \fi% 919 | } 920 | 921 | \def\g@boxingtallnobox#1#2.{%#1 is height, #2 includes a space as its last (and possibly only) character, and possibly starts with the box contents 922 | \if \space #2% 923 | \g@emptytallnobox#1% 924 | \else% 925 | \g@boxingtallnoboxa#1#2.% 926 | \fi% 927 | } 928 | 929 | \def\g@boxingtallbox#1#2.{%#1 is height, #2 includes a space as its last (and possibly only) character, and possibly starts with the box contents 930 | \if \space #2% 931 | \g@emptytallbox#1% 932 | \else% 933 | \g@boxingtallboxa#1#2.% 934 | \fi% 935 | } 936 | 937 | \def\g@boxingnobox#1.{%#1 includes a space as its last (and possibly only) character, and possibly starts with the box contents 938 | \if \space #1% 939 | \g@emptynobox% 940 | \else% 941 | \g@boxingnoboxa#1.% 942 | \fi% 943 | } 944 | 945 | \def\g@boxingbox#1.{%#1 includes a space as its last (and possibly only) character, and possibly starts with the box contents 946 | \if \space #1% 947 | \g@emptybox% 948 | \else% 949 | \g@boxingboxa#1.% 950 | \fi% 951 | } 952 | 953 | \def\g@boxinga#1#2.{%#1 is one of the tokens, #2 includes a space as its last (and possibly only) character 954 | \if ,#1% 955 | \g@newline\g@boxing#2.% 956 | \else% 957 | \if ;#1% 958 | \g@boxingbox#2.% 959 | \else% 960 | \if :#1% 961 | \g@boxingnobox#2.% 962 | \else% 963 | \if |#1% 964 | \g@boxingtallbox#2.% 965 | \else% 966 | \if /#1% 967 | \g@boxingtallnobox#2.% 968 | \else% 969 | \if _#1% 970 | \g@boxingwidebox#2.% 971 | \else% 972 | \if ^#1% 973 | \g@boxingwidenobox#2.% 974 | \else% 975 | \if `#1% 976 | \g@boxingbigbox#2.% 977 | \else% 978 | \if '#1% 979 | \g@boxingbignobox#2.% 980 | \else% 981 | \if !#1% 982 | \g@boxingcmd#2.% 983 | \else% do a normal box 984 | \g@boxingbox#1#2.% 985 | \fi% 986 | \fi% 987 | \fi% 988 | \fi% 989 | \fi% 990 | \fi% 991 | \fi% 992 | \fi% 993 | \fi% 994 | \fi% 995 | } 996 | 997 | \def\g@boxing#1.{%#1 includes a space as its last (and possibly only) character 998 | \if \space #1\else\g@boxinga#1.\fi% 999 | } 1000 | 1001 | \def\tgyoung(#1,#2,#3){\g@xpos=#1\g@xcoord=#1\g@ycoord=#2\setlength{\g@line}{\g@boxdimy}% 1002 | \g@boxing#3 .% 1003 | } 1004 | 1005 | \def\gyoungxy(#1,#2,#3){\settoheight\g@shift{1}\settodepth\g@dep{1}\g@countrows#3, % 1006 | \g@setbaselineshifter\tikz[baseline=.5*#2*\g@boxdimy-.5*\g@shift-.5*#2*\g@counter*\g@baselineshifter*\g@boxdimy,xscale=#1,yscale=#2, rotate=\ifg@russian45\else0\fi] 1007 | {\tgyoung(0cm,0cm,#3)}} 1008 | 1009 | \def\gyoungs(#1,#2){\gyoungxy(#1,#1,#2)} 1010 | \def\gyoungx(#1,#2){\gyoungxy(#1,1,#2)} 1011 | \def\gyoungy(#1,#2){\gyoungxy(1,#1,#2)} 1012 | \def\gyoung(#1){\gyoungxy(1,1,#1)} 1013 | 1014 | \endinput 1015 | --------------------------------------------------------------------------------