├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── create_images.sh ├── examples ├── limecv-icon.pdf ├── mwe-latex.tex ├── mwe-lualatex.tex ├── mwe-xelatex.tex └── picture.png ├── images ├── cover_letter.png ├── cover_letter.svg ├── cv.png ├── cv.svg ├── limecv-icon.pdf └── limecv-icon.svg ├── pack.sh ├── src ├── images │ └── limecv-icon.png ├── limecv.dtx └── limecv.ins └── support ├── install_fonts.sh ├── install_texlive.sh └── texlive.profile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/README.md -------------------------------------------------------------------------------- /create_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/create_images.sh -------------------------------------------------------------------------------- /examples/limecv-icon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/examples/limecv-icon.pdf -------------------------------------------------------------------------------- /examples/mwe-latex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/examples/mwe-latex.tex -------------------------------------------------------------------------------- /examples/mwe-lualatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/examples/mwe-lualatex.tex -------------------------------------------------------------------------------- /examples/mwe-xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/examples/mwe-xelatex.tex -------------------------------------------------------------------------------- /examples/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/examples/picture.png -------------------------------------------------------------------------------- /images/cover_letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/images/cover_letter.png -------------------------------------------------------------------------------- /images/cover_letter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/images/cover_letter.svg -------------------------------------------------------------------------------- /images/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/images/cv.png -------------------------------------------------------------------------------- /images/cv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/images/cv.svg -------------------------------------------------------------------------------- /images/limecv-icon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/images/limecv-icon.pdf -------------------------------------------------------------------------------- /images/limecv-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/images/limecv-icon.svg -------------------------------------------------------------------------------- /pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/pack.sh -------------------------------------------------------------------------------- /src/images/limecv-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/src/images/limecv-icon.png -------------------------------------------------------------------------------- /src/limecv.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/src/limecv.dtx -------------------------------------------------------------------------------- /src/limecv.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/src/limecv.ins -------------------------------------------------------------------------------- /support/install_fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/support/install_fonts.sh -------------------------------------------------------------------------------- /support/install_texlive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/support/install_texlive.sh -------------------------------------------------------------------------------- /support/texlive.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opieters/limecv/HEAD/support/texlive.profile --------------------------------------------------------------------------------