用LaTeX寫簡歷

環境搭建

安裝 LaTeX 環境

brew cask install mactex

配置spacemacs

dotspacemacs-configuration-layers 中加入git

(latex :variables
       latex-build-command "LaTeX")

而後 SPC f e R 重啓加載配置,spacemacs 就會自動安裝 latex 模塊github

小例子

建立 demo.tex 並寫入shell

%!TEX program = xelatex
\documentclass{ctexart}
\begin{document}
English test\\
中文測試\\
\[E = m c^2\]
\end{document}

%%% Local Variables:
%%% coding: utf-8
%%% mode: latex
%%% TeX-master: t
%%% TeX-engine: xetex
%%% End:

鍵入 SPC m b 編譯成 PDFapp

鍵入 SPC m v 就能打開編譯生成的 PDF測試

Just doing

咱們以這個簡歷模板爲例子,講下該如何用 LaTeX 寫簡歷ui

目錄結構

├── LICENSE
├── README.md
├── resume.pdf # 生成的pdf例子
├── resume.tex # 主文件
└── section
    ├── education.tex # 教育經歷
    ├── introduction.tex # 自我介紹
    ├── project.tex # 項目經歷
    ├── skill.tex # 我的技能
    ├── userinfo.tex # 我的信息
    └── work.tex # 工做經歷

doing

根據上面目錄給出的,在各個文件中將內容替換成本身的簡歷信息,而後編譯生成 PDF 便可。Happy LaTeXingspa

相關文章
相關標籤/搜索