Latex的字真是漂亮(在阅读GCC Manual时一直好奇到底是怎么生成这么漂亮的字,当接触了Latex之后,我想答案已经揭晓了),逐步了解Latex可以做很多事,平时用它编辑文档外(生成的文档真的很美观),还写写自己的工作经验和遇到的问题,遂决定用Latex制作简历。
首先找到了moderncv模板。这里是地址:
http://www.ctan.org/tex-archive/macros/latex/contrib/moderncv
当然也可以直接点击文字链接,效果是一样的。下面是一段简单的介绍:
moderncv -- a modern curriculum vitae class Moderncv provides a documentclass for typesetting curriculum vitaes in various styles. It aims to be both straightforward to use and customizable, providing four ready-made styles (classic, casual, banking and oldstyle) and allows you to define your own style by easily modifying colors, fonts, etc. Most commands are defined in such a way that arguments are optional. Until a decent manual is written, you can always look in the "examples" directory for some examples. Documents can be compiled into dvi, ps or pdf. Author: Xavier Danaux <[email protected]> Licence: The LaTeX Project Public License, version 1.3c
下载下来的样例里面有一个中文的模板(文件名有zh字样)。将模板用TexStudo打开,Ubuntu用TexMaker。模板里面用的是CJKutf8包,编译之后没有汉字只有英文字符,其实CJKutf8包是支持汉字的,暂不深究原因,咱们用xeCJK包,注释掉原来的语句,并添加xeCJK包。
%\usepackage{CJKutf8} \usepackage{xeCJK}
将\begin{CJK}{...}{...}\end{CJK}的去掉。编译即可以完全显示汉字了,接下来对模板进行修改就可以生成一份简单的简历了。生成的简历简洁、美观。
时间: 2024-10-13 18:09:30