Convert a data frame to an education entry

Description

Convert a data frame to an education entry

Usage

education_entry(
  data,
  degree = "degree",
  institution = "institution",
  institution_url = "institution_url",
  location = "location",
  date = "date",
  thesis_type = "thesis_type",
  thesis_title = "thesis_title"
)

Arguments

data A data frame with education information
degree The column name for the degree title. Default is "degree"
institution The column name for the institution. Default is "institution"
institution_url The column name for the institution URL. Default is "institution_url"
location The column name for the location. Default is "location"
date The column name for the date. Default is "date"
thesis_type The column name for thesis/concentration type label. Default is "thesis_type"
thesis_title The column name for thesis/concentration title. Default is "thesis_title"

Value

A string with the education entry

Examples

library("apatypstcv")

education <- data.frame(
  degree = "Ph.D. in Psychology",
  institution = "University of Nebraska-Lincoln",
  institution_url = "https://www.unl.edu",
  location = "Lincoln, NE",
  date = "2026",
  thesis_type = "Dissertation",
  thesis_title = "A Study of Decision Making"
)

education_entry(education)
```{=typst}
#resume-entry(title: [Ph.D. in Psychology],location: [Lincoln, NE],date: [2026],description: [#link("https://www.unl.edu")[University of Nebraska-Lincoln] #linebreak() #text(fill: color-gray)[*Dissertation:* A Study of Decision Making]],)
```