script and abschulssbericht template
This commit is contained in:
parent
e2c87f6a44
commit
5732066adb
84
DFGdocs.py
Executable file
84
DFGdocs.py
Executable file
@ -0,0 +1,84 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
import sys
|
||||||
|
import pathlib
|
||||||
|
import argparse
|
||||||
|
|
||||||
|
from IPython import embed
|
||||||
|
|
||||||
|
# The script should create a new DFG document from the templates
|
||||||
|
# It takes the template name and the name of the project.
|
||||||
|
# It copies over the needed files and replaces some information?
|
||||||
|
# dfg_header.tex, the main.tex, the makefile and the Logo
|
||||||
|
# renames the main file to the new name, updates the makefile
|
||||||
|
|
||||||
|
class MyParser(argparse.ArgumentParser):
|
||||||
|
def error(self, message):
|
||||||
|
sys.stderr.write('error: %s\n' % message)
|
||||||
|
self.print_help()
|
||||||
|
sys.exit(2)
|
||||||
|
|
||||||
|
|
||||||
|
templates = ["project", "lebenslauf", "cv", "abschlussbericht"]
|
||||||
|
version = ["53.01 - 09/22", "53.200 - 03/23", "53.200 - 03/23", "3.06 - 01/23"]
|
||||||
|
language = ["en", "de", "en", "de"]
|
||||||
|
|
||||||
|
required_files = {"project": ["header.tex", "Makefile", "DFG_logo.png", "dfg_sachbeihilfe.tex"],
|
||||||
|
"lebenslauf": ["header.tex", "Makefile", "DFG_logo.png", "lebenslauf.tex"],
|
||||||
|
"cv": ["header.tex", "Makefile", "DFG_logo.png", "cv.tex"],
|
||||||
|
"abschlussbericht": ["header.tex", "Makefile", "DFG_logo.png", "abschlussbericht.tex"]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def print_templates():
|
||||||
|
print("Available templates: ")
|
||||||
|
print(f"\tname{(15*' ')}version{14*' '}language")
|
||||||
|
for t, v, l in zip(templates, version, language):
|
||||||
|
print(f"\t{t}{(20 - len(t)) * ' '}{v}{(20 - len(v)) * ' '}{l}")
|
||||||
|
|
||||||
|
|
||||||
|
def create_parser():
|
||||||
|
parser = MyParser(
|
||||||
|
description="Creates a new DFG document according to latex templates.",
|
||||||
|
prog='DFGdocs',
|
||||||
|
epilog='By Jan Grewe, 2023, Free software, absolutely no warranty!')
|
||||||
|
parser.add_argument("-l", "--list", action="store_true", help="List the available templates.")
|
||||||
|
parser.add_argument("-d", "--destination", type=str, default=".",
|
||||||
|
help="The destination folder as absolute or relative path.")
|
||||||
|
parser.add_argument("name", nargs='?', type=str, help="The project name")
|
||||||
|
parser.add_argument("template", nargs='?', type=str, help="Name of the DFG document template.")
|
||||||
|
return parser
|
||||||
|
|
||||||
|
|
||||||
|
def copy_template(args):
|
||||||
|
# assemble project name and destination
|
||||||
|
# check if destination folder exists
|
||||||
|
# if not, create
|
||||||
|
# if exists, check if empty
|
||||||
|
# if not empty refuse to work
|
||||||
|
# copy files
|
||||||
|
# change filename of main.tex
|
||||||
|
# change Makefile
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
parser = create_parser()
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
if args.list:
|
||||||
|
print_templates()
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
if args.name is None:
|
||||||
|
print(f"Error using DFGdocs. NAME argument is not defined!")
|
||||||
|
parser.print_help()
|
||||||
|
sys.exit(2)
|
||||||
|
if args.template is None:
|
||||||
|
print(f"Error using DFGdocs. TEMPLATE argument is not defined!")
|
||||||
|
print_templates()
|
||||||
|
sys.exit(2)
|
||||||
|
|
||||||
|
copy_template(args)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
BIN
abschlussbericht/DFG_logo.png
Normal file
BIN
abschlussbericht/DFG_logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
72
abschlussbericht/Makefile
Normal file
72
abschlussbericht/Makefile
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
BASENAME=abschlussbericht
|
||||||
|
|
||||||
|
TEXFILE=$(BASENAME).tex
|
||||||
|
PDFFILE=$(BASENAME).pdf
|
||||||
|
TXTFILE=$(BASENAME).txt
|
||||||
|
REVISION=77a9cf8ccd2e6ed502b8b033af070b2aaa2108
|
||||||
|
|
||||||
|
all: bib
|
||||||
|
|
||||||
|
bib :
|
||||||
|
-pdflatex $(TEXFILE)
|
||||||
|
-bibtex $(BASENAME)
|
||||||
|
#-sed -i 's/{Author1}/{\\bibemph{Author1}}/;s/{Author2}/{\\bibemph{Author2}}/;s/{Author3}/{\\bibemph{Author4}}/' $(BASENAME).bbl
|
||||||
|
-pdflatex $(TEXFILE)
|
||||||
|
-pdflatex $(TEXFILE)
|
||||||
|
-pdflatex $(TEXFILE)
|
||||||
|
@echo
|
||||||
|
@echo "BibTeX log:"
|
||||||
|
@sed -n -e '1,/You.ve used/p' $(BASENAME).blg
|
||||||
|
|
||||||
|
pdf: $(PDFFILE)
|
||||||
|
$(PDFFILE) : $(TEXFILE)
|
||||||
|
pdflatex -interaction=scrollmode $< | tee /dev/stderr | fgrep -q "Rerun to get" && pdflatex -interaction=scrollmode $< || true
|
||||||
|
|
||||||
|
again :
|
||||||
|
pdflatex $(TEXFILE)
|
||||||
|
|
||||||
|
diff :
|
||||||
|
#latexdiff-git -r $(REVISION) --pdf $(TEXFILE)
|
||||||
|
latexdiff-git -r $(REVISION) $(TEXFILE)
|
||||||
|
-pdflatex $(BASENAME)-diff$(REVISION)
|
||||||
|
-bibtex $(BASENAME)-diff$(REVISION)
|
||||||
|
-pdflatex $(BASENAME)-diff$(REVISION)
|
||||||
|
-pdflatex $(BASENAME)-diff$(REVISION)
|
||||||
|
-pdflatex $(BASENAME)-diff$(REVISION)
|
||||||
|
mv $(BASENAME)-diff$(REVISION).pdf $(BASENAME)-diff.pdf
|
||||||
|
rm $(BASENAME)-diff$(REVISION).* $(BASENAME)-diff$(REVISION)-blx.*
|
||||||
|
|
||||||
|
# watch files ###############################################
|
||||||
|
watchpdf :
|
||||||
|
while true; do ! make -q pdf && make pdf; sleep 0.5; done
|
||||||
|
|
||||||
|
|
||||||
|
# statistics #########################################################
|
||||||
|
stats: $(PDFFILE)
|
||||||
|
# use \pagestyle{empty} and don't include any pictures!
|
||||||
|
@pdftotext -nopgbrk $(PDFFILE) - | fold -s > tmp.txt
|
||||||
|
@echo " words: " `wc -w tmp.txt 2> /dev/null | cut -d ' ' -f 1`
|
||||||
|
@echo "characters: " `wc -c tmp.txt 2> /dev/null | cut -d ' ' -f 1`
|
||||||
|
@rm tmp.txt
|
||||||
|
|
||||||
|
|
||||||
|
# clean up ############################################################
|
||||||
|
clean :
|
||||||
|
rm -f *~ $(BASENAME).aux $(BASENAME).bbl $(BASENAME).blg $(BASENAME).log $(BASENAME).out $(BASENAME)-blx.bib $(BASENAME).run.xml $(BASENAME).rtf
|
||||||
|
cleanall: clean
|
||||||
|
rm -f $(PDFFILE) $(BASENAME)-diff.pdf
|
||||||
|
|
||||||
|
|
||||||
|
# help ################################################################
|
||||||
|
help :
|
||||||
|
@echo \
|
||||||
|
"make pdf: make the pdf file of the proposal.\n"\
|
||||||
|
"make bib: run bibtex and make the pdf file of the proposal.\n"\
|
||||||
|
"make again: run latex and make the pdf file of the proposal,\n"\
|
||||||
|
" no matter whether you changed the .tex file or not.\n"\
|
||||||
|
"make watchpdf: make the pdf file of the paper\n"\
|
||||||
|
" whenever the tex file is modified.\n"\
|
||||||
|
"make diff: make a diff file since REVISION.\n"\
|
||||||
|
"make clean: remove all intermediate files,\n"\
|
||||||
|
" just leave the source files and the final .pdf files.\n"\
|
||||||
|
"make cleanall: clean and remove the final .pdf files."
|
326
abschlussbericht/abschlussbericht.tex
Normal file
326
abschlussbericht/abschlussbericht.tex
Normal file
@ -0,0 +1,326 @@
|
|||||||
|
\documentclass[11pt,a4paper]{article}
|
||||||
|
\input{header}
|
||||||
|
|
||||||
|
\newcommand{\important}[1]{\textcolor{red}{#1}}
|
||||||
|
%%%%% colors %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\usepackage{color}
|
||||||
|
\definecolor{darkgreen}{rgb}{0,0.6,0}
|
||||||
|
\definecolor{orange}{rgb}{1,0.64,0.0}
|
||||||
|
\definecolor{violet}{rgb}{0.81,0.12,0.56}
|
||||||
|
\definecolor{silver}{cmyk}{0.0, 0.0, 0.0, 0.5}
|
||||||
|
\newcommand{\rot}[1]{{\color{red} #1}}
|
||||||
|
\newcommand{\ora}[1]{{\color{orange} #1}}
|
||||||
|
\newcommand{\blau}[1]{{\color{blue} #1}}
|
||||||
|
|
||||||
|
%%%%% notes %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\usepackage{ifthen}
|
||||||
|
\newcommand{\note}[2][]{{\textcolor{silver}{\itshape[\ifthenelse{\equal{#1}{}}{}{#1: }#2]}}}
|
||||||
|
\newcommand{\notejb}[1]{\note[JB]{#1}}
|
||||||
|
\newcommand{\notejg}[1]{\note[JG]{#1}}
|
||||||
|
|
||||||
|
%%%%% hyphenation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\hyphenation{}
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
% <ÖFFENTLICHER TEIL>
|
||||||
|
% <DECKBLATT>
|
||||||
|
% <Dieser Abschnitt richtet sich an Gutachterinnen und Gutachter sowie die Geschäftsstelle und die Gremien der DFG, kann jedoch auf freiwilliger Basis durch die Berichtsautorin oder den Berichtsautor veröffentlicht werden.>
|
||||||
|
|
||||||
|
\title{}
|
||||||
|
\date{}
|
||||||
|
\author{}
|
||||||
|
\begin{document}
|
||||||
|
\maketitle
|
||||||
|
\setcounter{secnumdepth}{4}
|
||||||
|
\vspace{-20ex}
|
||||||
|
\pagestyle{plain}
|
||||||
|
|
||||||
|
\section*{ABSCHLUSSBERICHT}
|
||||||
|
|
||||||
|
\section{Allgemeine Angaben}
|
||||||
|
\begin{itemize}
|
||||||
|
\item[] DFG-Geschäftszeichen: \note{Ihre Referenznummer bei der DFG}
|
||||||
|
\item[] Projektnummer: \note{Wurde Ihnen im Bewilligungsschreiben mitgeteilt}
|
||||||
|
\item[] Titel des Projektes: \note{Entsprechend Antrag}
|
||||||
|
\item[] Name(n) des/r Antragstellenden:
|
||||||
|
\item[] Dienstanschrift/en:
|
||||||
|
\item[] Name(n) der Mitverantwortlichen:
|
||||||
|
\item[] Name(n) der Kooperationspartnerinnen und –partner:
|
||||||
|
\item[] Berichtszeitraum (gesamte Förderdauer):
|
||||||
|
\end{itemize}
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%% Oeffentlicher Teil %%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\setcounter{secnumdepth}{2}
|
||||||
|
\section{Zusammenfassung/Summary}
|
||||||
|
\color{silver}
|
||||||
|
Bitte formulieren Sie eine allgemeinverständliche Zusammenfassung in deutscher sowie englischer Sprache (jeweils maximal 3.000 Zeichen), in der das Thema und die Relevanz der Ergebnisse des Projekts für eine interessierte Öffentlichkeit dargestellt werden.
|
||||||
|
\color{}
|
||||||
|
|
||||||
|
\section{Wissenschaftlicher Arbeits- und Ergebnisbericht}
|
||||||
|
\color{silver}
|
||||||
|
Gehen Sie in Ihrem Bericht bitte, soweit zutreffend, auf folgende Punkte ein:
|
||||||
|
\begin{itemize}
|
||||||
|
\item Ausgangsfragen und Zielsetzung des Projekts
|
||||||
|
\item Beschreibung der projektspezifischen Ergebnisse und Erkenntnisse. Bitte gehen Sie dabei auf die Beiträge aller Antragstellerinnen und Antragsteller ein, sowie weiterer beteiligter Personen, Kooperationspartnerinnen und –partner etc. Ergebnisse, die bereits durch eine Veröffentlichung allgemein zugänglich sind, können mit Hinweis auf die Publikation kurz zusammengefasst werden. Unveröffentlichte Ergebnisse sollen ausführlicher geschildert werden.
|
||||||
|
\item Abweichungen vom ursprünglichen Konzept; Ergebnisse, die der Ausgangshypothese widersprechen
|
||||||
|
\item Aktivitäten und Ansatzpunkte zu qualitätsfördernden Maßnahmen, durch welche die Validität oder Nachvollziehbarkeit Ihrer Forschungsergebnisse sichergestellt wurde
|
||||||
|
\item Beschreibung des Umgangs mit im Projekt entstandenen Forschungsdaten und den ggf. genutzten Dateninfrastrukturen (Orientieren Sie sich hierbei an folgender Checkliste: www.dfg.de/forschungsdaten/checkliste)
|
||||||
|
\item Darstellung der im Projekt ggf. entstandenen, durch andere nachnutzbare und offen zugängliche Forschungsdaten, Methoden, Standards, Software oder Infrastrukturen
|
||||||
|
\item Durchführung wissenschaftlicher Veranstaltungen, Maßnahmen zur Wissenschaftskommunikation
|
||||||
|
\item Literaturverzeichnis (Liste der Arbeiten, auf die Sie sich bei der Darstellung und Einordnung der wissenschaftlichen Ergebnisse aus dem Projekt bezogen haben. Dies können eigene sowie Arbeiten anderer Wissenschaftlerinnen und Wissenschaftler sein.)
|
||||||
|
\end{itemize}
|
||||||
|
\color{}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Veröffentlichte Projektergebnisse}
|
||||||
|
\color{silver}
|
||||||
|
Führen Sie hier die wesentlichen, direkt aus dem Projekt hervorgegangenen veröffentlichten Ergebnisse auf, und geben Sie, wo immer möglich, die DOI (Digital Object Identifier), ISBN oder eine andere persistente Identifikationsnummer an. Falls diese nicht vorhanden ist, geben Sie bitte den Direktlink an. Wenn das Medium es erlaubt, müssen die Veröffentlichungen einen Hinweis auf die DFG Förderung enthalten (z.B. über ein Funding Acknowledgement) und die Projektnummer aufführen. Gliedern Sie die öffentlich gemachten Projektergebnisse nach:
|
||||||
|
\color{}
|
||||||
|
|
||||||
|
\subsection{Publikationen mit wissenschaftlicher Qualitätssicherung}
|
||||||
|
\color{silver}
|
||||||
|
In dieser Kategorie geben Sie bitte Fachaufsätze in Peer Review-Zeitschriften, Beiträge zu Konferenzen oder Sammelbänden jeweils mit Peer Review sowie Buchpublikationen an (siehe auch DFG-Vordruck 1.91). Open-Access-Publikationen sollten entsprechend markiert sein.
|
||||||
|
\color{}
|
||||||
|
|
||||||
|
\subsection{Weitere Publikationen und öffentlich gemachte Ergebnisse}
|
||||||
|
\color{silver}
|
||||||
|
An dieser Stelle können Sie die in jeder weiteren Form öffentlich gemachte Ergebnisse und Erkenntnisse aus Ihrer Forschung anführen. Dies könnten z. B. Beiträge zu Konferenzen oder Sammelbänden jeweils ohne Peer Review, Artikel auf PrePrint-Servern, Datensätze, Protokolle von Klinischen Studien, Softwarepakete, Blogbeiträge, Infrastrukturen oder Transfer sein. Ebenfalls angeben können Sie hier weitere Formen wissenschaftlichen Outputs wie z. B. Beiträge zur (technischen) Infrastruktur einer wissenschaftlichen Community (auch auf internationaler Ebene) oder Beiträge zur Wissenschaftskommunikation.
|
||||||
|
\color{}
|
||||||
|
|
||||||
|
\subsection{Patente (angemeldete und erteilte)}
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%%%%%%%%%%%%%%%%%% Nicht oeffentlicher Teil %%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\section{Weitere Informationen zu Projekt, Qualifikationen und Ausblick}
|
||||||
|
\color{silver}
|
||||||
|
Dieser Abschnitt richtet sich nur an Gutachterinnen und Gutachter sowie die Geschäftsstelle und die Gremien der DFG; er ist nicht für die Veröffentlichung vorgesehen.\newline
|
||||||
|
|
||||||
|
Gehen Sie in Ihrem Bericht bitte auf folgende Punkte ein:\newline
|
||||||
|
\begin{itemize}
|
||||||
|
\item Beschreibung des Verlaufs des Projekts einschließlich eventueller Probleme bei der Organisation oder Durchführung.
|
||||||
|
\item Ggf. denkbare Folgeuntersuchungen oder Darstellung möglicher Anwendungsperspektiven, insbesondere mit Hinblick auf Erkenntnistransfer
|
||||||
|
\item Qualifikation von Forschenden in frühen Karrierephasen im Zusammenhang mit dem Projekt (z.B. Promotionen, Habilitationen). Erfassen Sie dazu die Promotionsvorhaben, die im Rahmen dieses Projektes finanziert wurden in der Tabelle (5.1)
|
||||||
|
\end{itemize}
|
||||||
|
\color{}
|
||||||
|
|
||||||
|
\subsection{Beteiligte Promovierende}
|
||||||
|
\begin{table}[h!]
|
||||||
|
\begin{tabular}{|p{3cm}|p{2cm}|p{3cm}|p{3cm}|p{3cm}|}\hline
|
||||||
|
Promovierende & Geschlecht (M/W/D) & Promotionsstatus (laufend, beendet, abgebrochen)& Promotionsbeginn und (ggf.) -ende MM/JJJJ - MM/JJJJ & Finanzierung im Rahmen des Projektes \\\hline
|
||||||
|
Name, Vorname & & & & \\\hline
|
||||||
|
Name, Vorname & & & & \\\hline
|
||||||
|
... & & & & \\\hline
|
||||||
|
\end{tabular}
|
||||||
|
\end{table}
|
||||||
|
\end{document}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\subsection{State of the art and preliminary work}
|
||||||
|
|
||||||
|
[Text, with own subsections]
|
||||||
|
|
||||||
|
|
||||||
|
\subsubsection{Subsection 1}
|
||||||
|
[more text]
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%% 2 Objectives %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\setcounter{secnumdepth}{4}
|
||||||
|
\section{Objectives and work programme}
|
||||||
|
|
||||||
|
\subsection{Anticipated total duration of the project}
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Objectives}
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Work programme including proposed research methods}
|
||||||
|
for each applicant
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Handling of research data}
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Relevance of sex, gender and/or diversity}
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%%%%%%%%%%%%%%%%%%%%% 3 Publications %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\section{Project- and subject-related list of publications}
|
||||||
|
Works cited from sections 1 and 2, both by the applicant(s) and by
|
||||||
|
third parties. Please include DOI/URL if available. A maximum of ten
|
||||||
|
of your own works cited may be highlighted; font at least Arial 9 pt.
|
||||||
|
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%%%%%%%%%%%%% 4 Ethical and context information %%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\pagebreak
|
||||||
|
\section{Supplementary information on the research context}
|
||||||
|
Section 4 et seq. must not exceed 8 pages.
|
||||||
|
|
||||||
|
\subsection{Ethical and/or legal aspects of the project}
|
||||||
|
|
||||||
|
\subsubsection{General ethical aspects}
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsubsection{Descriptions of proposed investigations involving humans, human materials or identifiable data}
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsubsection{Descriptions of proposed investigations involving experiments on animals}
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsubsection{Descriptions of projects involving genetic resources (or associated traditional knowledge) from a foreign country}
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsubsection{Explanations regarding any possible safety-related aspects (“Dual Use Research of Concern; foreign trade law)}
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
|
||||||
|
\subsection{Employment status information}
|
||||||
|
For each applicant, state the last name, first name, and employment
|
||||||
|
status (including duration of contract and funding body, if on a
|
||||||
|
fixed-term contract).
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{First-time proposal data}
|
||||||
|
Only if applicable: Last name, first name of first-time applicant
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Composition of the project group}
|
||||||
|
List only those individuals who will work on the project but will
|
||||||
|
not be paid out of the project funds. State each person’s name,
|
||||||
|
academic title, employment status, and type of funding. [Text]
|
||||||
|
4.5 Researchers in Germany with whom you have agreed to cooperate on this project
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Researchers in Germany with whom you have agreed to cooperate on this project}
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Researchers abroad with whom you have agreed to cooperate on this project}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Researchers with whom you have collaborated scientifically within the past three years}
|
||||||
|
This information will help avoid potential conflicts of interest.
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Project-relevant cooperation with commercial enterprises}
|
||||||
|
If applicable, please note the EU guidelines on state aid or contact
|
||||||
|
your research institution in this regard.
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Project-relevant participation in commercial enterprises}
|
||||||
|
Information on connections between the project and the production
|
||||||
|
branch of the enterprise
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Scientific equipment}
|
||||||
|
List larger instruments that will be available to you for the
|
||||||
|
project. These may include large computer facilities if computing
|
||||||
|
capacity will be needed.
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Other submissions}
|
||||||
|
List any funding proposals for this project and/or major
|
||||||
|
instrumentation previously submitted to a third party.
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Other information}
|
||||||
|
Please use this section for any additional information you feel is
|
||||||
|
relevant which has not been provided elsewhere.
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%% 5 Expenses %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\vspace{2cm}
|
||||||
|
\section{Requested modules/funds}
|
||||||
|
Explain each item for each applicant (stating last name, first name).
|
||||||
|
|
||||||
|
\subsection{Basic Module}
|
||||||
|
|
||||||
|
\subsubsection{Funding for Staff}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsubsection{Direct Project Costs}
|
||||||
|
|
||||||
|
\paragraph{Equipment up to € 10,000, Software and Consumables}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\paragraph{Travel Expenses}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\paragraph{Visiting Researchers (excluding Mercator Fellows)}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\paragraph{Expenses for Laboratory Animals}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\paragraph{Other Costs}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\paragraph{Project-related Publication Expenses}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
|
||||||
|
\subsubsection{Instrumentation}
|
||||||
|
|
||||||
|
\paragraph{Equipment exceeding € 10,000}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\paragraph{Major Instrumentation exceeding € 50,000}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
|
||||||
|
\subsection{Module Temporary Position for Principal Investigator}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Module Replacement Funding}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Module Temporary Clinician Substitute}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Module Mercator Fellows}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Module Workshop Funding}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Module Public Relations Funding}
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\subsection{Module Standard Allowance for Gender Equality Measures}
|
||||||
|
Please detail what measures are planned to promote diversity and equal
|
||||||
|
opportunities. If you are submitting your proposal for an individual
|
||||||
|
research grant within a network, note that this standard allowance may
|
||||||
|
only be applied for within the coordination project. The coordination
|
||||||
|
project must combine all such requests in its calculation.
|
||||||
|
|
||||||
|
[Text]
|
||||||
|
|
||||||
|
\end{document}
|
104
abschlussbericht/header.tex
Normal file
104
abschlussbericht/header.tex
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
\usepackage[english]{babel}
|
||||||
|
\usepackage{xcolor}
|
||||||
|
\usepackage{graphicx}
|
||||||
|
\usepackage[right]{eurosym}
|
||||||
|
\usepackage{pgfgantt}
|
||||||
|
\usepackage{SIunits}
|
||||||
|
\usepackage{enumitem}
|
||||||
|
|
||||||
|
%%%%% hyperref %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\usepackage[breaklinks=true,colorlinks=true,citecolor=blue!30!black,urlcolor=blue!30!black,linkcolor=blue!30!black]{hyperref}
|
||||||
|
\newcommand{\email}[1]{\href{mailto:#1}{#1}}
|
||||||
|
|
||||||
|
\definecolor{dfgblau}{cmyk}{1,0.7,0,0}
|
||||||
|
%%%%% page layout %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\usepackage[left=25mm, right=25mm, top=25mm, bottom=25mm]{geometry}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\pagestyle{plain}
|
||||||
|
\fancyhf{}
|
||||||
|
\renewcommand{\headrulewidth}{0pt}
|
||||||
|
\fancyhead[RO, LE]{\footnotesize{page \thepage\ of \pageref{LastPage}}}
|
||||||
|
\fancyhead[LO, RE]{\footnotesize{DFG-Vordruck 3.06 – 01/23}}
|
||||||
|
|
||||||
|
|
||||||
|
\fancypagestyle{plain}{%
|
||||||
|
\fancyhf{}
|
||||||
|
\fancyhead[RO, LE]{\footnotesize{page \thepage\ of \pageref{LastPage}}}
|
||||||
|
\fancyhead[LO, RE]{\footnotesize{DFG-Vordruck 3.06 – 01/23}}
|
||||||
|
\fancyfoot[LO, RE]{\begin{minipage}[c]{0.74\columnwidth}
|
||||||
|
\footnotesize{\textcolor{dfgblau}{Deutsche Forschungsgemeinschaft}\\
|
||||||
|
Kennedyallee 40 $\cdot$ 53175 Bonn $\cdot$ postal address: 53170 Bonn\\
|
||||||
|
phone: + 49 228 885-1 $\cdot$ fax: + 49 228 885-2777 $\cdot$ \email{postmaster@dfg.de} $\cdot$ \url{www.dfg.de}}
|
||||||
|
\end{minipage}
|
||||||
|
\begin{minipage}[c]{0.24\columnwidth}
|
||||||
|
\includegraphics[width=\textwidth]{DFG_logo.png}
|
||||||
|
\end{minipage}
|
||||||
|
}
|
||||||
|
\renewcommand{\headrulewidth}{0pt}
|
||||||
|
}
|
||||||
|
|
||||||
|
%%%%% "Arial" font %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\renewcommand{\familydefault}{\sfdefault}
|
||||||
|
\usepackage{helvet}
|
||||||
|
|
||||||
|
%%%%% sectioning %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\usepackage{titlesec}
|
||||||
|
\setcounter{secnumdepth}{2}
|
||||||
|
\titleformat{\paragraph}
|
||||||
|
{\normalfont\normalsize\bfseries\itshape}{\theparagraph}{1em}{}
|
||||||
|
\titlespacing*{\paragraph}
|
||||||
|
{0pt}{1ex plus 3ex minus .2ex}{0.5ex plus .2ex}
|
||||||
|
|
||||||
|
%%%%% bibliography %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\usepackage[natbib=true, backend=bibtex, sorting=nyt, style=authoryear, dashed=false, firstinits=true, maxcitenames=2, maxbibnames=20, url=false, doi=false]{biblatex}
|
||||||
|
\DeclareNameAlias{sortname}{last-first}
|
||||||
|
\DeclareFieldFormat[article,inbook]{title}{#1}
|
||||||
|
\renewbibmacro{in:}{\ifentrytype{article}{}{\printtext{\bibstring{in}\intitlepunct}}}
|
||||||
|
\newcommand{\bibemph}[1]{#1}
|
||||||
|
|
||||||
|
\DeclareBibliographyCategory{ownpubs}
|
||||||
|
\DeclareBibliographyCategory{otherpubs}
|
||||||
|
|
||||||
|
\AtEveryBibitem{\ifcategory{ownpubs}{}{\clearfield{title}}}
|
||||||
|
|
||||||
|
\newcommand{\addownpubs}[1]{\addtocategory{ownpubs}{#1}\nocite{#1}}
|
||||||
|
\newcommand{\addotherpubs}[1]{\addtocategory{otherpubs}{#1}\nocite{#1}}
|
||||||
|
|
||||||
|
\bibliography{publications,references}
|
||||||
|
|
||||||
|
%%%%% figures %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
% captions:
|
||||||
|
\usepackage{sidecap}
|
||||||
|
\usepackage[format=plain,singlelinecheck=off,labelfont=bf,font={footnotesize,sf}]{caption}
|
||||||
|
|
||||||
|
% references to panels of a figure within the caption:
|
||||||
|
\newcommand{\figitem}[1]{\textsf{\bfseries\lowercase{(#1)}}}
|
||||||
|
% references to panels of a figure within the text:
|
||||||
|
\newcommand{\panel}[1]{(\textsf{#1})}
|
||||||
|
% references to figures:
|
||||||
|
\newcommand{\fref}[1]{\textup{\ref{#1}}}
|
||||||
|
\newcommand{\subfref}[2]{\textup{\ref{#1}}\,\panel{#2}}
|
||||||
|
% references to figures in normal text:
|
||||||
|
\newcommand{\fig}{fig.}
|
||||||
|
\newcommand{\Fig}{figure}
|
||||||
|
\newcommand{\figs}{figs.}
|
||||||
|
\newcommand{\Figs}{figures}
|
||||||
|
\newcommand{\figref}[1]{\fig~\fref{#1}}
|
||||||
|
\newcommand{\Figref}[1]{\Fig~\fref{#1}}
|
||||||
|
\newcommand{\figsref}[1]{\figs~\fref{#1}}
|
||||||
|
\newcommand{\Figsref}[1]{\Figs~\fref{#1}}
|
||||||
|
\newcommand{\subfigref}[2]{\fig~\subfref{#1}{#2}}
|
||||||
|
\newcommand{\Subfigref}[2]{\Fig~\subfref{#1}{#2}}
|
||||||
|
\newcommand{\subfigsref}[2]{\figs~\subfref{#1}{#2}}
|
||||||
|
\newcommand{\Subfigsref}[2]{\Figs~\subfref{#1}{#2}}
|
||||||
|
% references to figures within brackets:
|
||||||
|
\newcommand{\panelb}[1]{\textsf{#1}}
|
||||||
|
\newcommand{\subfrefb}[2]{\textup{\ref{#1}}\,\panelb{#2}}
|
||||||
|
\newcommand{\figb}{fig.}
|
||||||
|
\newcommand{\figsb}{figs.}
|
||||||
|
\newcommand{\figrefb}[1]{\figb~\fref{#1}}
|
||||||
|
\newcommand{\figsrefb}[1]{\figsb~\fref{#1}}
|
||||||
|
\newcommand{\subfigrefb}[2]{\figb~\subfrefb{#1}{#2}}
|
||||||
|
\newcommand{\subfigsrefb}[2]{\figsb~\subfrefb{#1}{#2}}
|
@ -1,4 +1,4 @@
|
|||||||
BASENAME=dfg_lebenslauf
|
BASENAME=lebenslauf
|
||||||
|
|
||||||
TEXFILE=$(BASENAME).tex
|
TEXFILE=$(BASENAME).tex
|
||||||
PDFFILE=$(BASENAME).pdf
|
PDFFILE=$(BASENAME).pdf
|
||||||
|
141
lebenslauf/cv.tex
Normal file
141
lebenslauf/cv.tex
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
\documentclass[11pt,a4paper]{article}
|
||||||
|
\input{header}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage[T1]{fontenc}
|
||||||
|
|
||||||
|
%%%%% notes %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\usepackage{ifthen}
|
||||||
|
\newcommand{\note}[2][]{{\textcolor{silver}{\itshape[\ifthenelse{\equal{#1}{}}{}{#1: }#2]}}}
|
||||||
|
\newcommand{\important}[1]{\textcolor{red}{#1}}
|
||||||
|
|
||||||
|
%%%%% colors %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\usepackage{color}
|
||||||
|
\definecolor{darkgreen}{rgb}{0,0.6,0}
|
||||||
|
\definecolor{orange}{rgb}{1,0.64,0.0}
|
||||||
|
\definecolor{violet}{rgb}{0.81,0.12,0.56}
|
||||||
|
\definecolor{silver}{cmyk}{0.0, 0.0, 0.0, 0.5}
|
||||||
|
\newcommand{\rot}[1]{{\color{red} #1}}
|
||||||
|
\newcommand{\ora}[1]{{\color{orange} #1}}
|
||||||
|
\newcommand{\blau}[1]{{\color{blue} #1}}
|
||||||
|
|
||||||
|
%%%%% hyphenation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\hyphenation{}
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\maketitle
|
||||||
|
\thispagestyle{plain}
|
||||||
|
\setcounter{secnumdepth}{4}
|
||||||
|
\vspace{-20ex}
|
||||||
|
|
||||||
|
\subsection*{Curriculum Vitae}
|
||||||
|
\note{Für den konkreten Nachweis der antrags- bzw. themenspezifischen Qualifikation ist der Abschnitt zu „eigenen Vorarbeiten“ im Antragsdokument vorgesehen.
|
||||||
|
Der Lebenslauf darf nicht mehr als maximal vier Seiten umfassen. Bitte behalten Sie die vorgegebene Formatierung unbedingt bei, insbesondere soll die Schrift Arial 11 Punkt, Zeilenabstand 1,2 nicht unterschritten werden. Dem Lebenslauf darf kein Foto beigefügt werden. Bitte bezeichnen Sie dieses Dokument mit CV\_PubList\_<Nachname der betreffenden Person>. Die Texte in grauer bzw. roter Schrift bieten Ihnen Informationen bei der Erstellung des Lebenslaufs. Bitte entfernen Sie diese Texte nach dem Ausfüllen des CV komplett. Weitere Informationen finden Sie unter}
|
||||||
|
\url{www.dfg.de/faq\_lebenslauf.}
|
||||||
|
|
||||||
|
\subsection*{Persönliche Daten\note{rein tabellarisch}}
|
||||||
|
\begin{table}[h!]
|
||||||
|
\begin{tabular}{|p{5.25cm}|p{10.cm}|}\hline
|
||||||
|
Title & \\\hline
|
||||||
|
First Name & \\\hline
|
||||||
|
Last Name & \\\hline
|
||||||
|
Current position & \\\hline
|
||||||
|
Current institute(s)/site(e), country & \\\hline
|
||||||
|
Identifiers/ORCID & \\\hline
|
||||||
|
\end{tabular}
|
||||||
|
\end{table}
|
||||||
|
|
||||||
|
\subsection*{Qualifications and Career \note{hybrid tabellarisch/Freitextfeld}}
|
||||||
|
\note{Bitte nennen Sie die Stationen Ihrer (wissenschaftlichen) Karriere inklusive Qualifizierungsstationen. Bitte geben Sie jeweils Position, Institution und Dauer an. Optional können Sie auch auf den wissenschaftlichen Inhalt der Tätigkeiten eingehen.
|
||||||
|
Falls Sie sich aktuell in einem Promotionsverfahren befinden, geben Sie bitte den Stand des Verfahrens an.
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{table}[h!]
|
||||||
|
\begin{tabular}{|p{5.25cm}|p{10.cm}|}\hline
|
||||||
|
\textbf{Stages} & \textbf{Periods and Details}\\
|
||||||
|
School\important{, Country} \important{obligatorisch nur für das Walter Benjamin-Programm}& \important{Sofern ein Teil oder die gesamte Schulzeit im Ausland verbracht wurde, bitte detaillierte Angaben zu Zeiten und Orten machen}\\\hline
|
||||||
|
Degree programme & \note{Fach, Zeitraum, Ort, Land (ggf. auch Wechsel im Fachgebiet}) \\\hline
|
||||||
|
Doctorate & \note{Datum, Betreuende/Mentorinnen/Mentoren, Fach (Angabe Fach ist optional), Einrichtung(en), Land}\\\hline
|
||||||
|
Stages of academic/professional career \note{(optionale Angaben seit der Promotion)} &\note{Für den Antrag relevante Tätigkeiten sind chronologisch (die aktuellste am Anfang) mit der Angabe von Zeitraum, Station/Position und Einrichtung zu nennen, wie z. B. Forschungsaufenthalte, Habilitation (Thema/Fach, Betreuende), Tätigkeiten an Hochschulen/außeruniversitären Einrichtungen, klinische Tätigkeit/Tätigkeit in der Versorgung von Patientinnen und Patienten, Erfahrungen und Qualifikationen in der Durchführung von klinischen Studien (Qualifikation als Prüferin, Prüfer oder Prüfungsteam-Mitglied sowie regulatorische und methodische Kenntnisse), Tätigkeit in der Industrieforschung, Tätigkeiten in anderen Berufsbranchen, Unternehmensgründungen, ehrenamtliche Tätigkeiten etc.} \\\hline
|
||||||
|
\end{tabular}
|
||||||
|
\end{table}
|
||||||
|
|
||||||
|
\subsection*{Supplementary Career Information \note{optional, Freitextfeld}}
|
||||||
|
|
||||||
|
\note{Hier können Sie freiwillig ergänzende Informationen zu Ihrem Werdegang oder einer besonderen persönlichen Situation eintragen, sollten Sie den Eindruck haben, dass diese Angaben für die angemessene Begutachtung und Bewertung Ihrer wissenschaftlichen Leistung relevant sein können. Als solche Besonderheiten oder Verzögerungen können beispielsweise Ausfallzeiten aufgrund von Kinderbetreuungsaufgaben, Mutterschutz-, Eltern- oder Erziehungszeiten, chronischen/langfristigen Erkrankungen, einer Behinderung oder besonderen familiären Verpflichtungen, wie der Pflege von Angehörigen, sowie Pandemie-bedingten Ausfallzeiten berücksichtigt werden. Es können auch zeitliche Verzögerungen im wissenschaftlichen Werdegang, z. B. für Personen, die in erster Generation eine akademische Karriere anstreben („first generation academic“), aufgrund von verschiedenen Pflicht- und Freiwilligendiensten, Spracherwerb, Migration oder Integrationsphasen, Flucht oder Asylverfahren und Ähnliches genannt werden. Bitte nennen Sie keine oder so wenige Daten wie möglich von Dritten.}
|
||||||
|
|
||||||
|
\note{In der Begutachtung und vergleichenden Bewertung können dann beispielsweise biographische Besonderheiten oder unvermeidbare Verzögerungen (von mindestens 2–3 Monaten pro Jahr) in Ihrer wissenschaftlichen Karriere angemessen zu Ihren Gunsten berücksichtigt werden.}
|
||||||
|
|
||||||
|
\note{Sollten Sie im Rahmen Ihrer Antragstellung relevante, vertrauliche Hinweise zu Ihrer persönlichen Situation (z. B. Erkrankung, Behinderung oder anderer Härtefall) geben wollen, diese jedoch nicht an Gutachtende oder Gremienmitglieder weitergeleitet haben möchten, dann verwenden Sie dafür bitte ausschließlich den separaten DFG-Vordruck 73.01 (Teil A, Übermittlung über elan „Weitere Anlagen“; im SFB-Programm ist eine Antragstellung über elan aktuell noch nicht möglich, bitte den Vordruck als weitere Datei gemeinsam mit dem Antrag übermitteln). Bitte beachten Sie, dass solche Angaben dann nicht oder nur eingeschränkt in der Begutachtung und vergleichenden Bewertung berücksichtigt werden. Kontaktieren Sie in diesen Fällen gerne im Vorfeld der Antragstellung die DFG-Geschäftsstelle (chancengleichheit@dfg.de). Weitere Informationen finden Sie unter \url{www.dfg.de/faq\_lebenslauf}.}
|
||||||
|
|
||||||
|
\important{\textbf{Für Anträge im Emmy Noether- und Walter Benjamin-Programm beachten Sie bitte Folgendes:}
|
||||||
|
Wenn Sie eine Berücksichtigung von Kinderbetreuungszeiten hinsichtlich der Antragsberechtigung wünschen, machen Sie bitte an dieser Stelle – sofern zutreffend – entsprechende Angaben (Anzahl der Kinder, Geburtsmonat und -jahr ohne Namen, z. B. „2 Kinder, geb. 05/2017 und 12/2020“) bzw. zu Eltern- und Erziehungszeiten (siehe DFG-Vordruck 50.02 bzw. DFG-Vordruck 50.10).}
|
||||||
|
|
||||||
|
\note{Freitextfeld, bitte überschreiben}
|
||||||
|
|
||||||
|
|
||||||
|
\subsection*{Activities in the Research System \note{optional, Freitextfeld}}
|
||||||
|
|
||||||
|
\note{Hier können Sie Angaben zu weiteren Tätigkeiten im Wissenschaftssystem machen. Dazu zählen beispielsweise Gremientätigkeiten, Tätigkeiten in der Selbstverwaltung der Wissenschaft, die Organisation wissenschaftlicher Veranstaltungen, Aktivitäten in der Lehre sowie Tätigkeiten als Mentorin bzw. Mentor.}
|
||||||
|
|
||||||
|
\note{Freitextfeld, bitte überschreiben}
|
||||||
|
|
||||||
|
\subsection*{Supervision of Researchers in Early Career Phases \note{optional, Freitextfeld}}
|
||||||
|
|
||||||
|
\important{Für Anträge im Programm Graduiertenkollegs sind die Angaben obligatorisch:
|
||||||
|
Bitte machen Sie an dieser Stelle Angaben zur Betreuung von Forschenden in frühen Karrierephasen in den letzten fünf Jahren, speziell eine Liste der betreuten Dissertationen (mit Angaben zur Promotionsdauer und soweit möglich zum weiteren Karriereweg der Promovierten). Haben Sie unter „Ergänzende Angaben zum Werdegang“ auf Verzögerungen infolge von Geburt und Kinderbetreuung aufmerksam gemacht, so verlängert sich der Fünf-Jahres-Zeitraum pro Kind um jeweils zwei Jahre.}
|
||||||
|
|
||||||
|
\note{Freitextfeld, bitte überschreiben}
|
||||||
|
|
||||||
|
\subsection*{Scientific Results\note{Teil A obligatorisch, Teil B optional, Freitextfelder}}
|
||||||
|
|
||||||
|
\note{Bitte geben Sie hier Ihre wichtigsten öffentlich gemachten wissenschaftlichen Ergebnisse an (siehe auch die Hinweise zu Publikationsverzeichnissen, DFG-Vordruck 1.91). Soweit vorhanden, geben Sie zusätzlich persistente Identifikatoren (z. B. DOI/Digital Object Identifier), vorzugsweise über die Nennung der Nummer, ansonsten über die Nennung der URL, an. Open-Access-Publikationen sollten entsprechend markiert sein.
|
||||||
|
Angaben zu quantitativen Metriken wie Impact-Faktoren und h-Indizes sind nicht erforderlich und werden bei der Begutachtung nicht berücksichtigt.}
|
||||||
|
|
||||||
|
\note{Erläutern Sie bitte auch – wo möglich – Ihren Anteil an den öffentlich gemachten Ergebnissen und/oder legen Sie dar, warum Sie die Publikation/bzw. den wissenschaftlichen Beitrag an dieser Stelle nennen.}
|
||||||
|
|
||||||
|
\note{Die Angaben erfolgen in zwei Kategorien:}
|
||||||
|
|
||||||
|
\subsection*{Category A \note{obligatorisch, Freitextfeld}}
|
||||||
|
|
||||||
|
\note{In dieser Kategorie geben Sie bitte Fachaufsätze in Peer Review-Zeitschriften, Beiträge zu Konferenzen oder Sammelbänden jeweils mit Peer Review sowie Buchpublikationen an (siehe auch DFG-Vordruck 1.91). Es können maximal zehn Publikationen aufgelistet werden.}
|
||||||
|
|
||||||
|
\note{Freitextfeld, bitte überschreiben}
|
||||||
|
|
||||||
|
|
||||||
|
\subsection*{Category B \note{obligatorisch, Freitextfeld}}
|
||||||
|
|
||||||
|
\note{An dieser Stelle können Sie die in jeder weiteren Form öffentlich gemachten Ergebnisse aus Ihrer Forschung anführen. Dies könnten z. B. Artikel auf PrePrint-Servern, Beiträge zu Konferenzen oder Sammelbänden jeweils ohne Peer Review, Datensätze, Protokolle von Klinischen Studien, Softwarepakete, angemeldete und erteilte Patente oder Blogbeiträge, Infrastrukturen oder Transfer sein. Ebenfalls angeben können Sie hier weitere Formen wissenschaftlichen Outputs wie z. B. Beiträge zur (technischen) Infrastruktur einer wissenschaftlichen Community (auch auf internationaler Ebene) oder Beiträge zur Wissenschaftskommunikation. Diese zweite Kategorie unterliegt ebenfalls einer Beschränkung auf maximal zehn Elemente.}
|
||||||
|
|
||||||
|
\note{Freitextfeld, bitte überschreiben}
|
||||||
|
|
||||||
|
\subsection*{Academic Distinctions \note{optional, Freitextfeld}}
|
||||||
|
|
||||||
|
\note{Hier können Sie Angaben zu Auszeichnungen oder Preisen machen. Dazu zählen auch Einladungen oder Berufungen in herausgehobenen Gremien oder Akademien.}
|
||||||
|
|
||||||
|
\note{Freitextfeld, bitte überschreiben}
|
||||||
|
|
||||||
|
|
||||||
|
\subsection*{Other Information \note{optional, Freitextfeld}}
|
||||||
|
|
||||||
|
\note{Hier können Sie auf weitere Punkte zur Charakterisierung Ihrer Person als Wissenschaftlerin bzw. Wissenschaftler oder auf andere Aspekte, wie beispielsweise eine Dual-Career-Thematik (die z. B. die Standortwahl bedingt), hinweisen, die aus Ihrer Sicht relevant für die Begutachtung oder Bewertung des Antrags sind.}
|
||||||
|
|
||||||
|
\note{Freitextfeld, bitte überschreiben}
|
||||||
|
|
||||||
|
|
||||||
|
\subsection*{Data protection and consent to the processing of optional data}
|
||||||
|
|
||||||
|
\note{Sofern Sie in diesem CV freiwillige (als optional gekennzeichnete) Angaben machen, ist Ihre Einwilligung erforderlich. Bitte bestätigen Sie uns Ihre Zustimmung durch Ankreuzen der nachfolgenden Checkbox.}
|
||||||
|
|
||||||
|
\Large{\XBox} \Large{\Square} \normalsize \textbf{I expressly consent to the processing of the voluntary (optional) information, including “special categories of personal data”1 in connection with the DFG’s review and decision-making process regarding my proposal.} This also includes forwarding my data to the external reviewers, committee members and, where applicable, foreign partner organisations who are involved in the decision-making process. To the extent that these recipients are located in a third country (outside the European Economic Area), I additionally consent to them being granted access to my data for the above mentioned purposes, even though a level of data protection comparable to EU law may not be guaranteed. For this reason, compliance with the data protection principles of EU law is not guaranteed in such cases. In this respect, there may be a violation of my fundamental rights and freedoms and resulting damages. This may make it more difficult for me to assert my rights under the General Data Protection Regulation (e.g. information, rectification, erasure, compensation) and, if necessary, to enforce these rights with the help of authorities or in court.
|
||||||
|
|
||||||
|
I may \textbf{revoke} my consent in whole or in part at any time – with effect for the future, freely and without giving reasons – vis-à-vis the DFG (\email{postmaster@dfg.de}). The lawfulness of the processing carried out up to that point remains unaffected. Insofar as I transmit “special categories of personal data” relating to third parties, I confirm that the necessary legitimation under data protection law exists (e.g. based on consent).
|
||||||
|
|
||||||
|
I have taken note of the DFG’s Data Protection Notice relating to research funding, which I can access at \url{www.dfg.de/privacy_policy} and I will forward it to such persons whose data the DFG processes as a result of being mentioned in this CV.
|
||||||
|
|
||||||
|
\footnotetext{Special categories of personal data are those “revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and (...) genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person’s sex life or sexual orientation” (Article 9(1) GDPR).}
|
||||||
|
|
||||||
|
\end{document}
|
@ -1,5 +1,5 @@
|
|||||||
\documentclass[11pt,a4paper]{article}
|
\documentclass[11pt,a4paper]{article}
|
||||||
\input{dfgheader}
|
\input{header}
|
||||||
\usepackage[utf8]{inputenc}
|
\usepackage[utf8]{inputenc}
|
||||||
\usepackage[T1]{fontenc}
|
\usepackage[T1]{fontenc}
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
BASENAME=dfg_sachbeihilfe
|
BASENAME=sachbeihilfe
|
||||||
|
|
||||||
TEXFILE=$(BASENAME).tex
|
TEXFILE=$(BASENAME).tex
|
||||||
PDFFILE=$(BASENAME).pdf
|
PDFFILE=$(BASENAME).pdf
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
\documentclass[11pt,a4paper]{article}
|
\documentclass[11pt,a4paper]{article}
|
||||||
\input{dfgheader}
|
\input{header}
|
||||||
|
|
||||||
%%%%% notes %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%% notes %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
\usepackage{ifthen}
|
\usepackage{ifthen}
|
Loading…
Reference in New Issue
Block a user