Skip to content

Commit

Permalink
Added note to README about LaTeX requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchelloharawild committed Jan 11, 2019
1 parent 31a489f commit 0c82bc2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.Rmd
Expand Up @@ -37,6 +37,14 @@ You can install the **development** version from
devtools::install_github("ropenscilabs/vitae")
```

This package requires LaTeX to be installed on your computer. If you're encountering issues, please check that LaTeX is installed. The [tinytex package](https://github.com/yihui/tinytex) makes it easy to setup LaTeX within R:

```{r tinytex-installation, eval = FALSE}
install.packages('tinytex')
tinytex::install_tinytex()
```


## Getting started

The *vitae* package currently supports `r length(list.dirs("inst/rmarkdown/templates/", recursive = FALSE))` popular CV templates, and adding more is a relatively simple process (details in the [creating vitae templates](https://ropenscilabs.github.io/vitae/articles/extending.html) vignette).
Expand Down
10 changes: 10 additions & 0 deletions README.md
Expand Up @@ -32,6 +32,16 @@ You can install the **development** version from
devtools::install_github("ropenscilabs/vitae")
```

This package requires LaTeX to be installed on your computer. If you’re
encountering issues, please check that LaTeX is installed. The [tinytex
package](https://github.com/yihui/tinytex) makes it easy to setup LaTeX
within R:

``` r
install.packages('tinytex')
tinytex::install_tinytex()
```

## Getting started

The *vitae* package currently supports 4 popular CV templates, and
Expand Down

0 comments on commit 0c82bc2

Please sign in to comment.