jooyoungseo / jy_CV

JooYoung Seo's Academic CV Written in R Markdown

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

! Missing } inserted. - Error

HaydarJawad opened this issue · comments

Hi, I keep geeting this error only when i copy and paste my data into the work experience sheet any idea why ?thank you

! Missing } inserted.

}
l.234 \end{cvitems}}

Error: LaTeX failed to compile JooYoung_Seo_CV.tex. See https://yihui.org/tinytex/r/#debugging for debugging tips. See JooYoung_Seo_CV.log for more info.
Execution halted

I have found out what was causing it, in work_exp.Rmd :

Work Experience

ezpickr::pick("data/working-experience.xlsx") %>%
  dplyr::filter(highlight == 1) %>%
  tidyr::fill(-why) %>%
  vitae::detailed_entries(what, when, with, where, why, .protect = FALSE)

I removed ", .protect = FALSE" and it all work great now. 

Why: I think (.protect = FALSE)  it's there to enable direct entry list into Latex. removing it didnt cause an isseu anyway.
Thank you