levels.BibEntry | R Documentation |
These functions return a list of all fields present in a BibEntry object.
## S3 method for class 'BibEntry'
levels(x)
fields(x)
x |
a BibEntry object. |
a list with the same length as x
of character vectors giving the
fields present in each entry of a BibEntry object.
The only difference between fields
and levels
is that
levels
returns a list with element names corresponding to entry keys.
bib <- as.BibEntry(list(c(bibtype = "Article", key = "mclean2014a", title = "My New Article",
author = "Mathew W. McLean",
journaltitle = "The Journal", date = "2014-01"), c(bibtype = "Book", key = "mclean2014b",
title = "My New Book", editor = "Mathew W. McLean", ISBN = "247123837", date = "2014-02")))
fields(bib)
levels(bib)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.