ddi_citation {rddi}R Documentation

citation, sourceCitation, fileCitation and their child nodes

Description

Citation entities for the study including general citations and source citations. Citation is a required element in the DDI-Codebook. fileCitation provides a full bibliographic citation option for each data file described in fileDscr. The minimum element set includes: titl, IDNo, authEnty, producer, and prodDate. If a DOI is available for the data enter this in the IDNo. More information on these elements, especially their allowed attributes, can be found in the references.

Usage

ddi_citation(...)

ddi_sourceCitation(...)

ddi_fileCitation(...)

ddi_biblCit(...)

ddi_holdings(...)

Arguments

...

Child nodes or attributes.

Details

Parent nodes

citation is contained in the following elements: docDscr; othRefs; otherMat; relMat; relPubl; relStdy; and stdyDscr. sourceCitation is contained in the sources element. fileCitation is included in the fileTxt element.

citation, sourceCitation, and fileCitation specific child nodes

ddi_biblCit() is the complete bibliographic reference containing all of the standard elements of a citation that can be used to cite the work. The "format" attribute is provided to enable specification of the particular citation style used, e.g., APA, MLA, Chicago, etc.

ddi_holdings() is information concerning either the physical or electronic holdings of the cited work. Attributes include: location–The physical location where a copy is held; callno–The call number for a work at the location specified; and URI–A URN or URL for accessing the electronic copy of the cited work.

Value

A ddi_node object..

Shared and complex child nodes

References

citation documentation

fileCitation documentation

sourceCitation documentation

biblCit documentation

holdings documentation

Examples

ddi_citation()

ddi_sourceCitation()

ddi_fileCitation()

# An example using the ddi_biblCit() child:

ddi_citation(
   ddi_biblCit(format = "APA", "Full citation text")
)

# An example using the ddi_holdings() child:

ddi_citation(
   ddi_holdings(location = "ICPSR DDI Repository",
                callno = "inap.",
                URI = "http://www.icpsr.umich.edu/DDIrepository/",
                "Marked-up Codebook for Current Population Survey, 1999: Annual Demographic File")
)


[Package rddi version 0.1.1 Index]