authors-class {neotoma2} | R Documentation |
An S4 class for a set of Neotoma author objects.
Description
The S4 authors
are a set of individual author
objects that
are then associated with a single S4 publication
class.
Value
object of class authors
Examples
{
simon <- new("contact", familyname = "Goring", givennames = "Simon J.")
socorro <- new("contact", familyname = "Dominguez", givennames = "Socorro")
first_author <- new("author", author = simon, order = 1)
second_author <- new("author", author = socorro, order = 2)
author_list <- new("authors", authors = list(first_author, second_author))
}
[Package neotoma2 version 1.0.4 Index]