https://github.com/corybrunson/nih-proposal-template
A Markdown–Pandoc template for NIH grant proposals
https://github.com/corybrunson/nih-proposal-template
grant-proposal markdown-template nih pandoc-template
Last synced: about 1 month ago
JSON representation
A Markdown–Pandoc template for NIH grant proposals
- Host: GitHub
- URL: https://github.com/corybrunson/nih-proposal-template
- Owner: corybrunson
- License: gpl-3.0
- Created: 2018-03-13T15:15:29.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2022-02-25T22:03:18.000Z (over 3 years ago)
- Last Synced: 2025-04-23T09:54:51.937Z (about 1 month ago)
- Topics: grant-proposal, markdown-template, nih, pandoc-template
- Language: TeX
- Homepage:
- Size: 416 KB
- Stars: 13
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NIH Grant Proposal Template
## Motivation
Grantwriting is an increasingly important component of academic research, and early-career researchers in particular need to hone our written communication alongside our investigative and networking skills.
This template aims to simplify the grant proposal formatting process in order to allow grantwriters to concentrate more on the writing.## Usage
The template uses [Markdown](https://daringfireball.net/projects/markdown/) formatting with LaTeX metadata adapted from [this NIH Grant Proposal template](https://www.latextemplates.com/template/nih-grant-proposal).
Use the following [Pandoc](https://pandoc.org/MANUAL.html) call to produce the PDF via the LaTeX engine:```bash
pandoc nih-proposal.md \
-t latex \
-N \
--bibliography=nih-proposal.bib \
--citeproc \
--csl=national-institute-of-health-research.csl \
-o nih-proposal.pdf
```Alternatively, use the following call to produce a Microsoft Word (`.docx`) file, using the style template "nih-reference.docx":
```bash
pandoc nih-proposal.md \
--bibliography=nih-proposal.bib \
--citeproc \
--csl=national-institute-of-health-research.csl \
--reference-doc=nih-reference.docx \
-o nih-proposal.docx
```Both calls are commented out at the end of `nih-proposal.md`.
## Needs
The current template omits important elements of document structure, including wrapped figures, which [require more proficiency](http://blog.hartleygroup.org/2016/01/18/wrapping-figures-in-pandoc-pdfs/) than i can bring. So i invite anyone with ideas for improving this template to suggest them via an [issue](/../../issues) or a [pull request](/../../pulls)!