CV latex template that I am using.
-
Two tex files are the main
cv.tex
andresume.tex
. -
*.sty
files define acronym used in the cv. Add your own acronym here. -
src
folder contains each module. You can add or remove provided module here. Once you add or remove go tocv.tex
orresume.tex
and adjust\input{*.tex}
list. -
Reference is handled in
src\ref.bib
. Add your bib item here and use it frompubs.tex
by calling the bibkey. For example
\item \bibentry{ycho-2017-icra}
- Yet I could not figure out how to make it work with Korean bib items in a bib file.
한국어 bib아이템은 bib파일 안에 들어가면 이상하게 깨지는데 아직 원인을 찾지 못함. pubs.tex
내에 한국어 bibitem은 따로 관리하는 중.
Run the following command
pdflatex cv.tex
bibtex cv.tex
pdflatex cv.tex
pdflatex cv.tex
You may encounter the following error on the first time compile. Just repeat the pdflatex
.
...and\NAT@force@numbers{}\NAT@force@numbers
cv.tex에 kor_only 라는 boolean 이 있어서 true
로 만들면 한글버전일때만 특정 라인을 보이게 할 수 있음.
\setboolean{kor}{false}
By cloning this public repo and adding remote, you can partially privatize the cv.
https://stackoverflow.com/questions/7983204/having-a-private-branch-of-a-public-repo-on-github
Make a private repo. For example, cv-akim-confidential
.
git clone --bare https://[email protected]/ayoungk/cv-akim.git
cd cv-akim
git push --mirror https://[email protected]/ayoungk/cv-akim-confidential.git
Then clone this private clone cv-akim-confidential
and add remote
git remote add public https://[email protected]/ayoungk/cv-akim.git