简历在视觉上是分开的

简历在视觉上是分开的

我希望在简历中将专业经历分开,以便每个部分在视觉上都像这样被包围:

在此处输入图片描述

所以 :

  1. 有没有像这样的标题包(日期+公司+标题)

  2. 在项目列表之后,显示演示的选项卡

  3. 所有这些都代表着每一个应该被围绕的经历。

我见过 tikz 可以做到这一点,但我不太习惯这样做。

答案1

一个相当快捷的解决方案是使用tcolorbox、等xcolorcolortbl

我没有尝试设置任何有关表格和顶行调整的内容。我还删除了一些法语单词 ;-) 之后肯定需要进行一些微调,这取决于具体内容。

\documentclass{book}

\usepackage{tcolorbox}
\usepackage{colortbl}%
\usepackage{xcolor}

\newcommand{\MyResume}[3]{%
\begin{tcolorbox}[arc=1cm,width=\textwidth,colframe=orange,notitle,colback=white]
\centering
\begin{tabular}{lcrrrrrrrr}
#1 & #2   & & & & & & & &  #3 
\end{tabular}
\begin{itemize}
\item D\'evelopment
\item Other line 
\item Other line 
\item Other line 
\item Other line 
\item Other line 
\end{itemize}
\arrayrulecolor{cyan}
%\centering
\begin{tabular}{|l|l|l|l|l|l|}
\hline
\rowcolor{cyan} Langages & controleurs  & OS & Environnement & Drivers & Versionnement\tabularnewline
& & & & & \tabularnewline
& & & & & \tabularnewline

\hline
\end{tabular}
\end{tcolorbox}
}%

\begin{document}
\MyResume{07/2001 -- 06/2005}{\textbf{\textcolor{black}{Europe Technologies}}}{\textbf{\textcolor{orange}{Ingenieur}}}%
\end{document}

在此处输入图片描述

没有必要将代码打包到新命令中。作为改进,应该从外部填充条目列表,以及下表。

替代解决方案

我改变了命令的定义\MyResume,列表和下面的表格内容可以作为第 4 和第 5 个参数传递。这不需要复杂的设置 ;-)

\documentclass{book}

\usepackage{tcolorbox}
\usepackage{colortbl}
\usepackage{etoolbox}


\newrobustcmd*{\MyListResume}{%
\begin{itemize}
\item D\'evelopment
\item Other line 
\item Other line 
\item Other line 
\item Other line 
\item Other line 
\end{itemize}
}%


\newrobustcmd*{\MyTabularResume}{%
\arrayrulecolor{cyan}
\begin{tabular}{|l|l|l|l|l|l|}
\hline
\rowcolor{cyan} Langages & controleurs  & OS & Environnement & Drivers & Versionnement\tabularnewline
& & & & & \tabularnewline
& & & & & \tabularnewline
\hline
\end{tabular}
}%


\newrobustcmd*{\MyResume}[5]{%


\begin{tcolorbox}[arc=1cm,width=\textwidth,colframe=orange,notitle,colback=white,boxrule=1.5mm]
\centering
\begin{tabular}{lcrrrrrrrr}
#1 & #2   & & & & & & & &  #3 
\end{tabular}
#4%
#5%
\end{tcolorbox}
}%

\begin{document}

\MyResume{07/2001 -- 06/2005}{\textbf{\textcolor{black}{Europe Technologies}}}{\textbf{\textcolor{orange}{Ing\'enieur}}}{%
\MyListResume}{\MyTabularResume}%
\end{document}

在此处输入图片描述

相关内容