Git Product home page Git Product logo

dfg's Introduction

LaTeX DFG template

A LaTeX template for a basic DFG (Deutsche Forschungsgemeinschaft, German Research Foundation) grant proposal. Attention: you need pdflatex and biber (not bibtex) to compile the document. Last updated according to the DFG original template listed in the header of the compiled PDF file (or in the *.tex files). Please check and open an issue if there are any updates to the original template not reflected here!

Acknowledgements

This template is based on the template of the Measurement Engineering Group and mimicks the RTF template and PDF guidelines provided by DFG with a focus on a "Sachbeihilfe" grant.

Thanks @FPK for suggesting and adding the cleveref package. Check the manual and use \cref{} instead of the default \ref for referencing your figures, tables, etc. General changes regarding lables can be done in the Header.tex

Thanks @nneuss a German version is also available. Please use dfg-german.tex instead of dfg.tex for the German version.

Thanks @dl1chb for better ToDo handling via the todonotes package and updates of the template.

Thanks @mank4 for the implementation of a gantt chart and better handling of subsections for work packages.

Thanks @klb2 for the implementation of consecutive section numbers for 1.2.1 and 1.2.2. Deprecated since DFG template version 54.01 09/22 where references are only listed in Section 3.

Thanks @gituser789 for the implementation of an own literature feature with separate numbering.

Thanks @kss-lea for adding separate numbering formats for the first and second (supplement) part.

Thanks @klb2, @FPK, and @wallscheid for updates to the new DFG-form 53.01 - 03/24 version.

Thanks @nise and @ThiloKr for the suggested changes to make author publications bold and @shervinsafavi for the PR implementing them.

Please let me know if I accidentally forgot a contribution! Thanks all contributors!

Compilation

pdflatex
biber
pdflatex
pdflatex

or

make

You can also change the filename of the ${NAME}.tex file and then run make filename=${NAME} (thx @dl1chb). For example, to compile the German version:

make filename=dfg-german

Biber

If you do not have biber installed try to install it from the package sources of your system. There is also a conda install that you can try:

conda create -n biber -c malramsay biber 
conda activate biber

Docker

You can also use a Docker container that comes with all dependencies (pdflatex, biber, ...) to compile the template. Thus, no installation of LaTeX, Biber, etc... is needed on your local system.

DOCKER='nanozoo/pdflatex:3.14159265--6263fbd'
docker pull $DOCKER

# using the Makefile
docker run --rm -v $PWD:$PWD -w $PWD $DOCKER make

# using pdflatex, biber, ... 
docker run --rm -v $PWD:$PWD -w $PWD $DOCKER pdflatex dfg.tex
docker run --rm -v $PWD:$PWD -w $PWD $DOCKER biber dfg
...

Optional content

The template implements some stuff that is not required by the original DFG template (or even needs to be removed when submitting to DFG). This includes a nice title page, as well as sections for a Signature and a List of Attachements. The LaTeX code is still available, just uncomment in the respective dfg.tex or dfg-german.tex.

ToDo-Notes, reference labels and draft mode

By default, ToDos and labels are activated (see below) which is considered the draft mode of the template. To turn both of them off (e.g. for the final version) just change \setboolean{finalcompile}{false} in dfg.tex to \setboolean{finalcompile}{true}.

ToDos are activated by default using the todonotes package. You can see it working by looking at the \todo[inline]{foo} statements in the text. It is self-explaining.

In addition you will see some labels at the margins. These are caused by another plugin which will just print the name of the label stated in \label{}. This can help by referencing sections and stuff.

Customization

Most of customization (citation style, etc.) can be done by changes in the proposal.sty. To change the default labels for referencing figures and tables (e.g. "Abbildung" for a figure in the german layout), look in the Header.tex file. Since v3.0.0 of the template the cleveref package is used replacing the standard \ref with the \cref command.

Bibliography

deprecated since DFG template version 54.01 09/22. All literature is listed in Section 3 now.

To add references to different parts of the proposal, you can define categories:

\DeclareBibliographyCategory{reviewed}
\addtocategory{reviewed}{Hoelzer:16}

that can be later used in the sections:

\printbibliography[category=reviewed, heading=none]

Recently, the DFG changed their template to have references in the sections 1.2.1 and 1.2.2 sorted consecutively. For other references in the bibliography, it seems that one can arrange them alphabetically. This was solved by @klb2 and changes were also included in this repo (thx!). The current default is numeric labels while first the references in sections 1.2.1 and 1.2.2 are numbered followed by all other references in the order how they appear in the text. Changes can be done via the proposal.sty file. @gituser789 also implemented a feature to number own references and all other references independently. This is activated by default and will add an 'O' or 'E' prefix to own ("eigene") literature in the english or german template, respectively. The user can change the prefix in the tex template. If you want to deactivate this feature, go to the tex template and comment/remove both \newrefcontext[labelprefix=] commands.

Bib Style

To change the style of your bibliography you have to change the following code snippet in the proposal.sty file:

\usepackage[backend = biber,
    style = numeric, %numeric, alphabetic
    firstinits = true,
    natbib = true,
    hyperref = true,
    maxbibnames = 11, % number of authors shown
    sorting=none, % remove this to have things sorted, e.g. use style=alphabetic
    ]{biblatex}

Highlight author's publications

It is recommended to higlight author publications. This can be done using bold font. Go to the Header.tex file and add the bib keys of the publications you want to highlight to this code section:

\addtocategory{important}{%
Hoelzer:16,Hoelzer:17,Smith2023b,Smith2023c,Smith2023d,MIller1900, % don't miss the comma after the last entry
}

The listed publications will be written in bold in the reference list. The citations in the text will be also bold. Change the behavior in the proposal.sty file if necessary.

Sum up costs

The environment funds can be used to automatically sum up all costs specified like this:

\begin{funds}[funding for staff]

\positionmul{Research associate, TV-L 13, 36 months}{5375}{36}
\positionmul{Student assistant, TV-L 13, 12 months}{450}{12}

\end{funds}

Gantt chart

You will find a gantt/gantt.tex file that can be modified directly to include a gantt chart in your proposal.

Disclaimer

I used this template for an actual proposal submission in 2019 to the DFG that was accepted and send out for review (unfortunately, not accepted in the end).

If you use this template and receive a confirmation, please let me know and I will be happy to reference your successful application here! :)

Furthermore, please be aware that since May 2020 the proposal is split into a more research focused part (sections 1-3, max. 17 pages) and all the supplementary information (starting section 4, max. 8 pages). Please also always check if there are any changes to the DFG template!

dfg's People

Contributors

dl1chb avatar fpk avatar gituser789 avatar hoelzer avatar klb2 avatar kss-lea avatar mank4 avatar nneuss avatar shervinsafavi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

dfg's Issues

New DFG RTF template since May 2020

The DFG made changes that need to be integrated into the LaTeX template:

Bitte beachten Sie, dass die Strukturierung des Leitfadens ab Mai 2020 und somit auch die "Beschreibung des Vorhabens" geändert wurde. Übergangsweise können Anträge nach dem Link auf eine Office-Dateivorherigen Vordruck (53.01 - 02/20) eingereicht werden bis zum 30. Oktober 2020. Neuerungen finden Sie zusammengefasst in der Interner LinkInformation für die Wissenschaft

Neben dem wissenschaftlichen Kernbereich sind vielfältige Begleitinformationen Gegenstand eines Projektantrags. Angesichts des weiterhin beschränkten Seitenumfangs gibt es künftig eine geschützte Seitenanzahl für den wissenschaftlichen Kernbereich. Den begleitenden Informationen, deren einzelne Fragen projektabhängig und fachspezifisch sehr unterschiedliche Relevanz haben können, soll ein entsprechender Raum gegeben werden.

https://www.dfg.de/foerderung/info_wissenschaft/2020/info_wissenschaft_20_24/index.html

Die Beschreibung des Vorhabens ist vom Umfang her beschränkt, hierbei stehen für Kap. 1 bis 4maximal 15 Seiten zur Verfügung. Ab Kapitel 5 stehen zusätzlich 10 Seiten zur Verfügung. Die vorgegebene Formatierung ist beizubehalten, insbesondere soll die Schrift Arial 11 Punkt, Zeilenabstand 1,2 nicht unterschritten werden. Für die Kapitel Projektbezogenes Publikationsverzeichnis und Literaturverzeichnis soll die Schrift Arial 9 Punkt nicht unterschritten werden

https://www.dfg.de/formulare/54_01/54_01_de.pdf
http://www.dfg.de/formulare/53_01_elan/53_01_de_elan.rtf

todo package on the cover page

Thanks for sharing the template. I'm using it for my proposal and I'll let you know if my proposal is successful. In the meantime, I have a question:

the \todo box containing the text First-time should be shifted a bit to the left since it overflows to the right in my pdf generated. I have tried to shift it leftward but was not successful.

Also, enabling \setboolean{finalcompile}{true} before input the Header.tex file didn't change anything to my pdf generated.

Remove sections "Signature" and "List of attachments"?

First of all, thank you very much for creating and sharing the so wonderful DFG LaTeX template! It helped me really a lot prepare my proposal. I'll definitely keep to use your template for my other future proposals:)

I got wondering that if sections 6 "Signature" and 7 "List of attachments" really exist in the present official DFG templates. Maybe ~4 years ago they were in the official template, but now as far as I see 53_01_en_elan.rtf of 11/20, 03/22, and 09/22 (yeah, this month they again updated it), there are no corresponding sections anymore. I also did a random survey for 53_05_en_elan.rtf, 53_09_en_elan.rtf, 53_15_en_elan.rtf, 53_24_en_elan.rtf, and 53_120_en_elan.rtf, none of which seems to have the corresponding sections.

I actually noticed this because, after submitting my proposal, the DFG office requested to remove these sections to comply the present template.

So, if you think reasonable, how about now removing these chapters? Or, if these sections are requested in some DFG proposal categories, how about indicating this in the template?

Updated DFG template 54.01

There are some changes that should be incorporated into the template before further usage!

Die DFG hat den Leitfaden für Projektanträge (Vordruck 54.01) aktualisiert. Das betrifft die Beschreibung des Vorhabens bei Projektanträgen im Rahmen einer Sachbeihilfe, des Emmy Noether-Programms, einer Forschungsgruppe, einer Klinischen Forschungsgruppe oder eines Schwerpunktprogramms. Übergangsweise werden Anträge nach der alten Vorlage nur noch bis zum 31. Mai 2022 angenommen.

Folgendes hat sich geändert:
• Angaben zum Umgang mit Forschungsdaten sind nun verpflichtend (weitere Infos inklusive Checkliste).
• Die Kapitel „Umgang mit Forschungsdaten“ und „Relevanz von Geschlecht und/oder Vielfältigkeit“ sind nun im wissenschaftlichen Teil der Vorhabenbeschreibung angesiedelt.
• Im Kapitel 2.3 „Arbeitsprogramm“ können ggf. Qualitätssicherungsmaßnahmen erläutert werden.
• Das Kapitel 4.1.2 „Erläuterung zu den vorgesehenen Untersuchungen bei Versuchen am Menschen oder an vom Menschen entnommenem Material“ wurde um den Bereich Versuche mit „identifizierbaren Daten“ ergänzt.
• Die Hinweise zum „Dual Use Research of Concern“ (Kapitel 4.1.5) wurden aufgrund geänderter rechtlicher Normierungen aktualisiert. An dieser Stelle möchte ich an unsere eigene Hausverfügung zum Umgang mit DURC erinnern.

New DFG Template

According to 1 there is a new chapter 7.8 "Module Standard Allowance for Gender Equality Measures" at the end.

I will look for other changes of the current template. If someone finds others, please write it down here. Then I can put all of them into this template at the end of this week.

~[Feature Request] Literature sorting improvement~ Literature in v54.01 DFG template

Summary
Is there a way to include literature sorting with different labels directly into the template?
e.g. own literature labeled as [E1], [E2], ...
others literature labeld as [1], [2], ...

Describing the Problem
There are mainly two different literature sections

  • own work (project specific and non-project specific) (Section 1.2, 1.2.1 and 1.2.2)
  • general literature in Section 3: state of research, project goals, working program

The general order is

  • state of research and own pre-research
  • own literature for pre-research (Section 1.2, 1.2.1 and 1.2.2)
  • Describing project goals
  • others literature, for state of research, own research and working program

The result is a unsorted mixture of literature in the text. Lets assume [1]-[10] are own literature, and [11-30] others.
In Chapter 1 in the text, there is a mixture of the literature, e.g.

txt [11], ..... [1] .... [12] ... [2,3] .... [13].... [14]....

Possible Solution
is there a way to label own literature with additonal sign directly into the template?

txt [1], ..... [E1] .... [2] ... [E2, E3] .... [3].... [4]....

Highlighting the author's publications in section 4

In the current template DFG states in the section "Project- and subject-related list of publications" to highlight the author's publications. Also highlighting is not a must the DFG strongly recommends doing so. Here is a short solution that can be added to the Header.tex:

%% Highlight entries
\usepackage[svgnames]{xcolor}
\DeclareBibliographyCategory{important}
\colorlet{impentry}{Maroon}% let 'impentry' = Maroon
\AtEveryBibitem{%
  \ifcategory{important}%
    {\bfseries\color{impentry}}%
    {}%
  }
\addtocategory{important}{%
Smith2023a,Smith2023b,Smith2023c,Smith2023d,MIller1900, % don't miss the comma after the last entry
}

finalcompile boolean setting should precede Header input

dfg/dfg.tex

Line 17 in f9af0eb

\setboolean{finalcompile}{false}

The Header.tex file uses the finalcompile boolean to determine whether todo notes & section labels are shown... but the value of the variable is only set in dfg.tex after the Header.tex has been input. As such, setting the variable in dfg.tex has no effect on the compiled document.

To fix:

  • Declare the variable in proposal.sty
  • Move the \setboolean command to before \input{Header}

ToDo Notes package

Now there are small macros like \todo, but we could add this package todonotes 1. I would include it. The macro \todo now can be reused, it would necessary to extend a small workaround when using externalize with tikz (i already have) to the behaviour of \todo will just be more fancy in the default config.

I can make a proposal here in a seperate branch by a pull request if you like.

BR Beckus

change in paragraph environment remain after the work package sections

After adding the "WP" prefix to the \paragraph headings in dfg.tex the following \subsubsubsection also contain the prefix, because the \subsubsubsection definition is based on \paragraph. As a result I see, for instance, travel expenses with the "WP" prefix.

Definition in the proposal.sty:

\newcommand{\subsubsubsection}[1]{\paragraph{#1} \mbox{} \par}
\setcounter{secnumdepth}{5}

Before the work package section in dfg.tex:
\renewcommand{\theparagraph}{WP\,\arabic{paragraph}}

After the work package section something like \renewcommand{\theparagraph}{\arabic{paragraph}} is missing. The letter code line adds numbering to the heading but only on the first level. If one needs section level 4 (e.g. 1.4.1.2 Foo Bar) another solution needs to be found.

German version?

Hi,
first, let me thank you for creating this LaTeX template!
I am thinking of translating it into a German version. Is there any interest for that?
If yes, the best way is probably to create it as a separate file 'dfg-german.tex', no?
Regards,
Nicolas

Move Header.txt to proposal.sty

I'd like to move all from Header.txt to proposal.sty. I see no things according to dfg.tex or dfg-german.tex which cannot be implemented in proposal.sty. I think this is more cleaner then. I also propose the following:

  • move all of the current Header.tex to proposal.sty
  • the paragraph styling is now like [parskip=full] of komascript. [parskip=half] which is the default of komascript will save space
  • the definition of \subparagraph{} will make new lines. Even a \paragraph{} usually does not.
  • \subparagraph{} and even ¸\paragraph{} (to be checked) has some space above itself, it can be reduced. Maybe a switch to quickly remove this when one gets in trouble of filling this 15 pages space?
  • define the DFG-Color als a color-code ready to be used in proposal.sty

If nothing stands against that, I will do this changes. Also some things which are defined in the single files dfg.tex and dfg-german.tex may come into this.

Numbering of own references

New DFG guidelines ask to number your references in Sec. 1.2.1. and 1.2.2 consecutively. For other references in the bibliography, it seems that one can arrange them alphabetically. Please suggest that how one should do this in your template?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.