Pagedown: Adding bibliography from .bib file in resume?

Created on 27 Oct 2019  路  3Comments  路  Source: rstudio/pagedown

Could it be possible to add our publications from a .bib file?

Most helpful comment

This is a very interesting question. Thanks!

After thinking about it, I would adopt the following strategy:

  • parse the .bib file in a data frame using the bib2df package
  • use a chunk (with chunk options echo=FALSE and results='asis') to generate the markdown content from the previous data frame

All 3 comments

This is a very interesting question. Thanks!

After thinking about it, I would adopt the following strategy:

  • parse the .bib file in a data frame using the bib2df package
  • use a chunk (with chunk options echo=FALSE and results='asis') to generate the markdown content from the previous data frame

This is a very interesting question. Thanks!

After thinking about it, I would adopt the following strategy:

  • parse the .bib file in a data frame using the bib2df package
  • use a chunk (with chunk options echo=FALSE and results='asis') to generate the markdown content from the previous data frame

Thanks! Is a wonderful solution I'll surely try it. I think that an integration between the pagedown resume and some advanced features similar to the vitae package could be very useful. Pagedown offer the advantage to have also the html version for having an online cv.

@filippogambarota I definitely agree with you. It will be nice to have a helper function in this package to read a .bib file and list all publications automatically on the CV. This is probably not very hard.

BTW, I'm not sure if you have seen @nstrayer's amazing post: https://twitter.com/NicholasStrayer/status/1181254905018761216 It basically extended your idea further, and all CV data is read from a CSV file.

Was this page helpful?
0 / 5 - 0 ratings