powered by
Parses a references section into individual entries with extracted metadata including authors, year, and title information.
parse_references_section(references_text)
Tibble with columns:
ref_id: Unique reference identifier
ref_full_text: Complete reference text
ref_authors: Author string
ref_year: Publication year
ref_first_author: First author surname
ref_first_author_normalized: Lowercase first author
ref_second_author: Second author surname (if present)
ref_second_author_normalized: Lowercase second author
n_authors: Number of authors (99 = et al.)
Character string. Text of references section.
if (FALSE) { refs_text <- doc$References parsed_refs <- parse_references_section(refs_text) }
Run the code above in your browser using DataLab