Format for creating NIH Biosketches. Does not use an official template but should approximate the format required by NIH. Is built on the template created by Paul Magwene found here: https://github.com/pmagwene/latex-nihbiosketch.

nih_biosketch(..., highlight = NULL, citation_package = "none")

Arguments

...

Additional arguments to rmarkdown::pdf_document

highlight

Syntax highlighting style. Supported styles include "default", "tango", "pygments", "kate", "monochrome", "espresso", "zenburn", and "haddock". Pass NULL to prevent syntax highlighting.

citation_package

The LaTeX package to process citations, natbib or biblatex. Use none if neither package is to be used.

Value

R Markdown output format to pass to render

Details

Possible arguments for the YAML header are:

  • name Your Full Name

  • eracommons Your ERA Commons ID

  • position Description of your research position

  • education Your education attainment (include any Bachelors, Masters, Doctorate, Postdoc). Several items are required for the education: 1) degree, 2) school, 3) date, and 4) field.

  • researchsupport Both ongoing and completed research support received. Several items are required for the research support for both ongoing and completed: 1) grant, 2) PI, 3) dates, 4) title, 5) description, and 6) role.

  • bibliography The name of the bib file

  • bibliographystyle The bib style

  • output Should be one of the formats from biosketchr

Examples

if (FALSE) { library(rmarkdown) draft("MyArticle.Rmd", template = "nih_biosketch", package = "biosketchr") }