Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliantao/jtaocv
Personal Quarto CV conforming to ASU FSE requirements
https://github.com/juliantao/jtaocv
biblatex cv latex quarto quarto-template reproducible resume zotero
Last synced: 16 days ago
JSON representation
Personal Quarto CV conforming to ASU FSE requirements
- Host: GitHub
- URL: https://github.com/juliantao/jtaocv
- Owner: juliantao
- Created: 2021-04-09T05:24:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-04T17:59:03.000Z (about 2 months ago)
- Last Synced: 2024-11-29T07:39:52.246Z (24 days ago)
- Topics: biblatex, cv, latex, quarto, quarto-template, reproducible, resume, zotero
- Language: TeX
- Homepage:
- Size: 8.56 MB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Personal Quarto CV conforming to ASU FSE format
I use the following resources/steps to prepare my CV:
1. Use Quarto markdown to prepare the CV
1. Use a customized quarto extension based on a `LaTex` template, originally developed by [Prof. Robert Hyndman](https://github.com/robjhyndman/CV). New macros for `biblatex` package were created to annotate authors using the symbols required by ASU FSE.
1. Use Zotero to manage my publications. I use the `Better BibLatex` plugin and use the `Extra` field to define the author annotations, `tex.author+an: 1=phd; 2=corresponding`. This will create a line of `author+an = {1=phd; 2=corresponding}` in the `bib` entry. With the macros defined in the `LaTex` template, symbols corresponding to each annotation type will be added to the authors' names. I also turn on the `automatic export` function so that whenever there is a change to my publication collection, the `bib` file is automatically updated.
1. Use `csv` files as the source for various lists
1. Use `R` to prepare tables and to calculate various statistics such as paper numbers, grant amount, etc.
1. Use virtual environment to enhance the reproducibility. Note that older version of `r` packages `RefManageR` and `bibtex` were needed to correctly parse the annotation data.```r
install.packages("devtools")
require("devtools")
install_version("RefManageR", "1.3.0")
install_version("bibtex", "0.4.2.3")
```Thanks go to Prof. Robert Hyndman for the beautiful and professional CV template as well as the handy helper R functions.
I also referred to the blog post by Prof. Kasper Hansen on [Formatting your bibliography in LaTex](http://www.hansenlab.org/cv_bibliography_tex)