├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── fontawesome.sty ├── fonts ├── Main │ ├── Fontin-SmallCaps.otf │ ├── texgyretermes-bold.otf │ ├── texgyretermes-bolditalic.otf │ ├── texgyretermes-italic.otf │ └── texgyretermes-regular.otf ├── fontawesome-webfont.ttf └── zh_CN-Adobe │ ├── AdobeHeitiStd-Regular.otf │ ├── AdobeKaitiStd-Regular.otf │ └── AdobeSongStd-Light.otf ├── linespacing_fix.sty ├── resume-zh_CN.tex ├── resume.cls ├── resume.preview.png ├── zh_CN-Adobefonts_external.sty └── zh_CN-Adobefonts_internal.sty /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/README.md -------------------------------------------------------------------------------- /fontawesome.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/fontawesome.sty -------------------------------------------------------------------------------- /fonts/Main/Fontin-SmallCaps.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/fonts/Main/Fontin-SmallCaps.otf -------------------------------------------------------------------------------- /fonts/Main/texgyretermes-bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/fonts/Main/texgyretermes-bold.otf -------------------------------------------------------------------------------- /fonts/Main/texgyretermes-bolditalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/fonts/Main/texgyretermes-bolditalic.otf -------------------------------------------------------------------------------- /fonts/Main/texgyretermes-italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/fonts/Main/texgyretermes-italic.otf -------------------------------------------------------------------------------- /fonts/Main/texgyretermes-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/fonts/Main/texgyretermes-regular.otf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/zh_CN-Adobe/AdobeHeitiStd-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/fonts/zh_CN-Adobe/AdobeHeitiStd-Regular.otf -------------------------------------------------------------------------------- /fonts/zh_CN-Adobe/AdobeKaitiStd-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/fonts/zh_CN-Adobe/AdobeKaitiStd-Regular.otf -------------------------------------------------------------------------------- /fonts/zh_CN-Adobe/AdobeSongStd-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/fonts/zh_CN-Adobe/AdobeSongStd-Light.otf -------------------------------------------------------------------------------- /linespacing_fix.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/linespacing_fix.sty -------------------------------------------------------------------------------- /resume-zh_CN.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/resume-zh_CN.tex -------------------------------------------------------------------------------- /resume.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/resume.cls -------------------------------------------------------------------------------- /resume.preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/resume.preview.png -------------------------------------------------------------------------------- /zh_CN-Adobefonts_external.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/zh_CN-Adobefonts_external.sty -------------------------------------------------------------------------------- /zh_CN-Adobefonts_internal.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hijiangtao/resume/HEAD/zh_CN-Adobefonts_internal.sty --------------------------------------------------------------------------------