zoukankan      html  css  js  c++  java
  • Linux 下使用Asciidoc + wkhtmltopdf 写简历

      在Linux下似乎没有什么写简历的好工具,于是学习了一下网络上大牛的做法,总结一下:

    step 1:

    安装Asciidoc

    hg clone -r 8.6.8 https://asciidoc.googlecode.com/hg/ asciidoc-8.6.8
    $ autoconf
    $ ./configure
    $ make
    $ sudo make install

     

    step 2:

    安装wkhtmltopdf(对于内含URL的html转化会失效,带有Qt补丁的版本转化出来的PDF字体太大)

    sudo apt-get install wkhtmltopdf

    step 3:

    写简历

    vi res.txt

    asciidoc 转化为html

    asciidoc res.txt

    wkhtmltopdf 将html转化为pdf

    wkhtmltopdf res.html res.pdf

    本来将html转化为pdf有多种方式,可是经过我的对比,使用wkhtmltopdf的转化效果最佳。


    这里附上一个我自己的简历模板:

    == Yue Qiao

    *Phone*

    150

    *Email*

    @gmail.com

    == Skills

    Programming skills

    - Familiar with X86 Assembly
    - Proficient with C
    - Proficient with C++
    - Proficient with Python
    - Proficient with Linux Programming

    Programming tools

    - Source code management: Git
    - Editor/IDE:vim,Emacs, Visual Studio
    - OS:Linux(Ubuntu),Windows 7

    == Experience

    Transplant of xxx 2011

    - Transplant

    Implementation of xxx 2012

    - Implementation
    - Decrease

    == Education
    [horizontal]
    [black]#CS,University#:: 2008 - 2012

    [black]#MES,University#:: 2012 - 2014

    效果图:

      

  • 相关阅读:
    线段树区间最大子段和
    NTT数论变换
    cdq分治·三维偏序问题
    线段树区间开方
    怎么联系$zcy$呢?
    题解 CF375D 【Tree and Queries】
    点分治模板
    Good Bye 2018题解
    Hello 2019题解
    Codeforces Round #525 (Div. 2)题解
  • 原文地址:https://www.cnblogs.com/invisible/p/3052374.html
Copyright © 2011-2022 走看看