diff --git a/README.md b/README.md index f8aec76..a642c4c 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,9 @@ Compiling YuanYifan's resume to PDF... Building English Resume Building Chinese Resume ``` - 就代表编译成功了。 -你也可以到[TsingJyujing/Resume/releases](https://github.com/TsingJyujing/Resume/releases) 直接下载编译好的结果 +你也可以到 [Releases](https://github.com/TsingJyujing/Resume/releases) 直接下载编译好的结果 ## 感谢 diff --git a/compile-resume.sh b/compile-resume.sh index d5d6640..5943b67 100644 --- a/compile-resume.sh +++ b/compile-resume.sh @@ -4,11 +4,8 @@ if [ $1 == "pdf" ] then echo "Compiling YuanYifan's resume to PDF..." echo "Building English Resume" - # pandoc -s -f markdown-smart --pdf-engine=xelatex --template=pm-template.latex -V geometry:margin=1in README-en.md -o target/Yifan_Yuan_CV_en.pdf - pandoc -s -f markdown-smart --pdf-engine=xelatex --template=pm-template.latex README-en.md -o target/Yifan_Yuan_CV_en.pdf echo "Building Chinese Resume" - # pandoc -s -f markdown-smart --pdf-engine=xelatex --template=pm-template.latex -V mainfont='Source Han Serif CN' -V geometry:margin=1in README.md -o target/Yifan_Yuan_CV_zh.pdf pandoc -s -f markdown-smart --pdf-engine=xelatex --template=pm-template.latex README-zh.md -o target/Yifan_Yuan_CV_zh.pdf fi