GithubHelp home page GithubHelp logo

bhanditz / vitae Goto Github PK

View Code? Open in Web Editor NEW

This project forked from cran/vitae

0.0 2.0 0.0 779 KB

:exclamation: This is a read-only mirror of the CRAN R package repository. vitae — Curriculum Vitae for R Markdown. Homepage: https://github.com/ropenscilabs/vitae Report bugs for this package: https://github.com/ropenscilabs/vitae/issues

R 13.64% TeX 86.36%

vitae's Introduction

vitae

/ˈviːteɪ/

CRAN status Travis build status

Templates and tools for making a Résumé/CV

The vitae package makes creating and maintaining a Résumé or CV with R Markdown simple. It provides a collection of LaTeX templates, with helpful functions to add content to the documents.

Installation

You can install the release version from CRAN.

install.packages('forecast')

You can install the development version from GitHub.

# install.packages("devtools")
devtools::install_github("ropenscilabs/vitae")

Getting started

The vitae package currently supports 4 popular CV templates, and adding more is a relatively simple process (details in the creating vitae templates vignette).

Creating a new CV with vitae can be done using the RStudio R Markdown template selector:

These templates leverage the strength of rmarkdown to include common information in the YAML header (name, position, social links…) and extended information in the main body. The main body of the CV is written using markdown, and allows for data-driven generation of entries using the *_entries functions. This allows you to import your working history from other sources (such as ORCID, Google Scholar, or a maintained dataset), and include them programatically into your CV.

For example, the rorcid package can be used to extract Rob Hyndman’s education history:

orcid_data <- rorcid::orcid_educations("0000-0002-2140-5352")$`0000-0002-2140-5352`
#> 
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#> 
#>     filter, lag
#> The following objects are masked from 'package:base':
#> 
#>     intersect, setdiff, setequal, union
#>                      role-title start-date.year.value end-date.year.value
#> 1                           PhD                  1990                1992
#> 2 Bachelor of Science (Honours)                  1985                1988
#>         organization.name organization.address.city
#> 1 University of Melbourne                 Melbourne
#> 2 University of Melbourne                 Melbourne

The package provides two types of entries from data, which are detailed_entries and brief_entries. Both functions provide sections for what, when, and with, and the detailed_entries additionally supports where and why. These arguments support operations, so for this example, we have used glue to combine the start and end years for our when input. Excluding any inputs is also okay (as is done for why), it will just be left blank in the CV.

orcid_data$`education-summary` %>%
  detailed_entries(
    what = `role-title`,
    when = glue::glue("{`start-date.year.value`} - {`end-date.year.value`}"),
    with = organization.name,
    where = organization.address.city
  )

Additional examples of using this package can be found in the slides presented at ozunconf2018: https://mitchelloharawild.com/vitae/

Examples of using vitae

Add your vitae to the list using a PR.


Please note that the ‘vitae’ project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

vitae's People

Contributors

mitchelloharawild avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.