Latex 模板

Latex 模板 首页 / Latex入门教程 / Latex 模板

Latex有多种用途。简历和模板是文档的关键部分。

让我们通过创建一个简单的简历来了解这一点。

第一部分以标题(Title)开始。要创建页边距,我们使用 geometry 包。

在此示例中,将对每个部分进行详细讨论,并提供相应的输出以更好地理解。最后,整个代码将被编译。您可以考虑输出以及CV的样式。

开头部分的代码如下:

\documentclass[12pt]{article} 
\usepackage[margin=4cm]{geometry} %您可以根据要求更改边距
\usepackage{graphicx}
\begin{document}
   \title{How to learn latex resume templates} 
    \author{ Welcome learnfk.com } 
    \date{\today}
    \maketitle

\end{document}

下图显示了当前部分的输出:

Latex Resume and Templates

您也可以在简历中插入护照尺寸的照片。插入照片的代码如下:

\documentclass[10pt]{article}
\usepackage[margin=5cm]{geometry}
\usepackage{graphicx,xcolor}
\begin{document}
    \pagecolor{lightgray}
    \title{\bfseries\Huge Hi LearnFK}
    \author{learnfk@126.com}
    \date{}
    \begin{minipage}{0.70\textwidth}
        \begingroup % 开始显示内容 
        \let\center\flushleft % flushleft 用于将文本左对齐
        \let\endcenter\endflushleft
        \maketitle
        \endgroup
    \end{minipage} %minipage用于将页面分成两部分
    \begin{minipage}{0.27\textwidth}
        \graphicspath{ {image/} } % 这里指定图片目录
    \includegraphics[scale=0.3]{logo}\\%scale 是缩放比例,1表示原始大小
    \end{minipage}
\end{document}

输出:

无涯教程网

Latex Resume and Templates

您也可以使用 vspace 命令在各部分之间设置空格。该命令写为\vspace {3em} 。大括号内的数据是间距的尺寸。您可以根据要求更改样式。

下面给出了不同的部分及其代码和输出:

链接:https://www.learnfk.comhttps://www.learnfk.com/latex/latex-resume-and-templates.html

来源:LearnFk无涯教程网

  • 地址和个人信息

本部分包含在简历中提及您的地址和个人信息的步骤或代码。

\documentclass[10pt]{article}
\usepackage[margin=5cm]{geometry}
\usepackage{graphicx,xcolor}
\begin{document}
   \begin{minipage}[ht]{0.64\textwidth}
        Address: Guangxi,Guilin \\
        Phone No. +learnfk@xxxx
  \end{minipage}
\end{document}

输出:

无涯教程网

Latex Resume and Templates
  • 个人资料摘要

本节包含候选人的个人资料摘要详细信息。代码如下:

\documentclass[12pt]{article}
\usepackage[margin=5cm]{geometry}
\usepackage{graphicx,xcolor}
\begin{document}
    \title{How to learn latex resume templates} 
    \author{ Welcome learnfk.com } 
    \date{\today}
    \maketitle
      \begin{large}
        \textbf{Intro} \\\\
           Learnfk tutorials provide programmers with basic introductory tutorials. \\ This site includes Javascript, MYSQL, PHP, Python, Java, HTML5, Flutter, Redis, Nativescript, VueJs, Golang, big data, artificial intelligence and other basic programming tutorials
        \end{large}
\end{document}

输出:

无涯教程网

Latex Resume and Templates
  • 经验(Experience)

本节包含候选人的工作经验详细信息。代码如下:

\documentclass[12pt]{article}
\usepackage[margin=5cm]{geometry}
\usepackage{graphicx,xcolor}
\begin{document}
    \title{How to learn latex resume templates} 
    \author{ Welcome learnfk.com } 
    \date{\today}
    \maketitle
    
    \begin{tabular}{lr}
        2020 - Present & \textbf{Day Dayt Up} \\\\
        2019- 2020& \textbf{Start building tutorial network }\\
    \end{tabular}
\end{document}

输出:

无涯教程网

Latex Resume and Templates
  • 教育介绍

本节包含候选人的教育细节。代码如下:

\documentclass[12pt]{article}
\usepackage[margin=5cm]{geometry}
\usepackage{graphicx,xcolor}
\begin{document}
    \title{How to learn latex resume templates} 
    \author{ Welcome learnfk.com } 
    \date{\today}
    \maketitle
    
    \begin{large}
        \textbf{EDUCATION}
    \end{large}\\\\
    \textbf{Bachelors in Chemical Engineering , RMIT University, Melbourne, Australia}\\
    2010-2014\\\\% 根据您的资格设置教育偏好。
    % 上面提到的文字只是一个例子。
    \textbf{High school, St. Catherine's School, VIC Melbourne}\\
    2008-2010
\end{document}

输出:

无涯教程网

Latex Resume and Templates
  • 技能和兴趣

本节包含候选人的技能和兴趣详细信息。代码如下:

\documentclass[12pt]{article}
\usepackage[margin=5cm]{geometry}
\usepackage{graphicx,xcolor}
\begin{document}
    \title{How to learn latex resume templates} 
    \author{ Welcome learnfk.com } 
    \date{\today}
    \maketitle
    
    \begin{large}
        \textbf{SKILLS AND INTERESTS}
    \end{large}\\\\
        $\bullet$ I Can speak French and Spanish Fluently.\\
        $\bullet$ Excellent performer in the Chemistry.\\
        $\bullet$ Participation and Award-winning certificates in various Activities.\\
        $\bullet$ Advanced knowledge of C++
\end{document}

输出:

无涯教程网

Latex Resume and Templates

您可以根据需要添加其他部分,例如已知语言,兴趣爱好等。

现在,要查看整个CV,将结合上面说明的所有步骤。

CV的代码如下:

\documentclass[10pt]{article}
\usepackage[margin=5cm]{geometry}
\usepackage{graphicx}
\begin{document}
\title{\bfseries\Huge Hi LearnFK}
\author{learnfk@126.com \\Address: 268, Street, Melbourne \\Phone No. +61357768788}
\date{}
\begin{minipage}{0.70\textwidth}
\begingroup
\let\center\flushleft 
\let\endcenter\endflushleft
\maketitle
\endgroup
\end{minipage} % minipage environment is used to split the page into two parts
\begin{minipage}{0.27\textwidth}
\graphicspath{ {image/}}
\includegraphics[scale=0.2]{logo}
\end{minipage}

\begin{large}
\textbf{PROFILE} \\\\% you can also use \section{PROFILE} command instead. 
An expert in Chemical engineering with hand base knowledge on the projects and devices used for the manufacturing of the chemicals.\\I usually focus on modern techniques with practical implementation beliefs and
ensure smooth business operations and knowledge of business decisions as well.
\end{large}\\\\

\begin{large}
\textbf{WORK EXPERIENCE}
\end{large}\\\\
\begin{tabular}{lr}
Sept 2016- Present & \textbf{Assistant Manager Concours Motors ,Melbourne} \\
& Responsible for proper management of an organization.\\
 & Developed understanding of customer service of sub parts.\\\\
July 2014-2016& \textbf{Senior Associate, Lands' End, Melbourne}\\
 & Managing the product development process.\\
 & Ensuring functioning and productivity with quality.\\
\end{tabular} \\\\

\begin{large}
\textbf{EDUCATION}
\end{large}\\\\
\textbf{Bachelors in Chemical Engineering , RMIT University, Melbourne, Australia}\\
2010-2014\\\\% set the preference of Education according to your qualifications.
% the text metioned above is just an example.
\textbf{High school, St. Catherine's School, VIC Melbourne}\\
2008-2010 \\\\

\begin{large}
\textbf{SKILLS AND INTERESTS}
\end{large}\\\\
$\bullet$ I Can speak French and Spanish Fluently.\\
$\bullet$ Excellent performer in the Chemistry.\\
$\bullet$ Participation and Award-winning certificates in various Activities.\\
$\bullet$ Advanced knowledge of C++

\end{document}

根据数据量,输出分为两页,如下图所示:

Latex Resume and TemplatesLatex Resume and Templates

您可以使用多种样式和颜色。您可以突出显示文本,也可以使用背景颜色,例如文本背景,页面背景等。

字数

要在Texmaker或Latex中计算pdf文件中的单词,请右键单击pdf页面,然后选择-文档中的单词数(Number of words)。-

它将显示文档中单词的数量。让我们考虑以上代码的示例。

右键单击pdf页号 2 的屏幕,如下图所示:

Latex Resume and Templates

选择选项-文档中的单词数(Number of words in the document)

它将显示文档中的单词数。

字数统计的图像如下:

Latex Resume and Templates

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

TensorFlow快速入门与实战 -〔彭靖田〕

研发效率破局之道 -〔葛俊〕

DevOps实战笔记 -〔石雪峰〕

苏杰的产品创新课 -〔苏杰〕

雷蓓蓓的项目管理实战课 -〔雷蓓蓓〕

后端技术面试 38 讲 -〔李智慧〕

Web安全攻防实战 -〔王昊天〕

eBPF核心技术与实战 -〔倪朋飞〕

快手 · 音视频技术入门课 -〔刘歧〕

好记忆不如烂笔头。留下您的足迹吧 :)