cv_resume

A latex cv/resume template.
授权协议 MIT License
开发语言
所属分类 企业应用、 LaTeX排版系统
软件类型 开源软件
地区 不详
投 递 者 傅高逸
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

cv_resume

中文简历 Latex 模板。基于 ModernCV 模板,进行了中文字体支持和优化,使用 xelatex 编译。

  • 字体和大小的宏在 .tex 文件中都有注释
  • 外边距可以通过 scale 调整
  • 标题与正文的间距可以 \vspace 调整。

Usage

*我自己是用 emacs 在 MacOS 上编译的,其他途径还没试过

安装xelatex(可通过安装MacTeX将需要的包全部安装)。然后运行

make

Preview

LICENSE

cv_resume © geekplux, Released under the MIT License.

geekplux.com · GitHub @geekplux · Twitter @geekplux

  • 一般的图像文件格式使用的是 Unsigned 8bits吧,CvMat矩阵对应的参数类型就是 CV_8UC1,CV_8UC2,CV_8UC3。 (最后的1、2、3表示通道数,譬如RGB3通道就用CV_8UC3) 而float 是32位的,对应CvMat数据结构参数就是:CV_32FC1,CV_32FC2,CV_32FC3... double是64bits,对应CvMat数据结构参数:CV_64F

  • 转自:http://stackoverflow.com/questions/8377091/what-are-the-differences-between-cv-8u-and-cv-32f-and-what-should-i-worry-about CV_8U is unsigned 8bit/pixel - ie a pixel can have values 0-255, this is t

  • 函数作用 通过霍夫变换寻找图像中的直线 函数原型 cv::HoughLines() void cv::HoughLines (InputArray image, // 必须为单通道8位二进制图像 OutputArray lines, // 类型:vector<Vec2f> 表示形式为(ro,theta) double rho, // 生成极坐标时像素的扫描步

  • CvMemStorage typedef struct CvMemStorage { struct CvMemBlock* bottom; struct CvMemBlock* top; struct CvMemStorage* parent; int block_size; int free_space; } CvMemStorage; 内存存储器是一个可用来存储诸如序列,轮廓,图形,子划分等动

  • 函数作用 boundingRect()得到包覆此轮廓的最小正矩形。 minAreaRect()得到包覆轮廓的最小斜矩形。 minEnclosingCircle()得到包覆此轮廓的最小圆形。 函数原型 Rect boundingRect(InputArray points) RotatedRect minAreaRect(InputArray points) void minEnclosingCir

  • 函数作用 cv::HoughLinesP()和CV::HoughLines():检测直线 cv::HoughCircles():检测圆 函数原型 void HoughLinesP(InputArray image, // 源图像,需为8位的单通道二进制图像 OutputArray lines, // 每一条线由具有四个元素的矢量(x_1,y_1, x_2, y_2) double