Skip to contents

Onkelinx, ThierryORCID logo123 Research Institute for Nature and Forest (INBO)456

keywords: organisation, author, standardisation

Manage person and organisation information with validation and formatting capabilities. Provides R6 classes for managing organisations and their members, with support for multiple languages, ORCID identifiers, ROR identifiers, licensing requirements, and integration with citation management systems.

Installation

You can install the development version of citeme from GitHub with:

# install.packages("remotes")
remotes::install_github("inbo/citeme")

Example

This is a basic example which shows you how to create an organisation item:

library(citeme)

# Create an organisation item
org <- org_item$new(
  name = c(
    `en-GB` = "Research Institute for Nature and Forest (INBO)",
    `nl-BE` = "Instituut voor Natuur- en Bosonderzoek (INBO)"
  ),
  email = "info@inbo.be",
  orcid = TRUE,
  rightsholder = "shared",
  funder = "when no other"
)

# Print the organisation
org$print()

Code of Conduct

Please note that the citeme project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.