used to extract a single field from each entry in a BibEntry object
Value
a named list of values for the field specified by name for each entry; NULL
if the field is not present for
a particular entry. The names attribute of the returned list contains the entry keys (potentially back-quoted).
See also
Other operators:
$<-.BibEntry()
,
+.BibEntry()
,
[.BibEntry()
,
[<-.BibEntry()
,
[[.BibEntry()
,
[[<-.BibEntry()
,
c.BibEntry()
Examples
if (requireNamespace("bibtex")) {
file.name <- system.file("Bib", "biblatexExamples.bib", package="RefManageR")
bib <- suppressMessages(ReadBib(file.name))
bib[[50:55]]$author
bib[[seq_len(5)]]$bibtype
}
#> $`westfahl:space`
#> [1] "InCollection"
#>
#> $set
#> [1] "Set"
#>
#> $stdmodel
#> [1] "Set"
#>
#> $aksin
#> [1] "Article"
#>
#> $angenendt
#> [1] "Article"
#>