如何在简历中添加圆角框来表示技能?

如何在简历中添加圆角框来表示技能?

有人能帮我在简历中添加如下所示的圆形框来填写技能吗?我正在使用作为来源。可参考以下内容这里。此外,如何添加双色调标题,例如诺沃雷苏姆是奖金吗?

谢谢!!

技能 圆形盒子

编辑#1:按照@Miyase的建议从外部链接添加源。

        \documentclass[10pt,a4paper,ragged2e]{altacv}
\geometry{left=2cm,right=10cm,marginparwidth=6.8cm,marginparsep=1.2cm,top=1.25cm,bottom=1.25cm}
\ifxetexorluatex
  \setmainfont{Carlito}
\else
  \usepackage[utf8]{inputenc}
  \usepackage[T1]{fontenc}
  \usepackage[default]{lato}
\fi
\definecolor{VividPurple}{HTML}{000000}
\definecolor{SlateGrey}{HTML}{2E2E2E}
\definecolor{LightGrey}{HTML}{2E2E2E}
\colorlet{heading}{VividPurple}
\colorlet{accent}{VividPurple}
\colorlet{emphasis}{SlateGrey}
\colorlet{body}{LightGrey}
\renewcommand{\itemmarker}{{\small\textbullet}}
\renewcommand{\ratingmarker}{\faCircle}
\addbibresource{sample.bib}

\begin{document}
\name{JAYDEEP SINGH}
\tagline{Jaypee University of Engineering and Technology}
\personalinfo{%
    \email{[email protected]}
    \location{Guna, Madhya Pradesh - India}
    \linkedin{https://www.linkedin.com/in/jaydeep-singh-4ab1a3162/}
}

%% Make the header extend all the way to the right, if you want.
\begin{fullwidth}
    \makecvheader
\end{fullwidth}



\cvsection{TECHNICAL SKILLS}
\smallskip
\begin{itemize}
    \item MATLAB, Xilinx ISE 12.1, MS Office, Proteus, Arduino
          \smallskip
    \item C,C++,Java,Python(Beginner)
          \smallskip
\end{itemize}
\clearpage


\nocite{*}

\end{document}

编辑#2:双音标头参考:双色标头参考

答案1

下面的代码对我有用。我正在使用。该宏\inoval由 OpTeX 提供。

\fontfam[Heros]

\colordef\mygrey{.6\Black}
\ovalparams={\fcolor=\mygrey \lcolor=\mygrey}
\def\myframe#1{\inoval{\lower.3em\vbox to1.2em{}\White\,#1\,}\hskip.5em}

\vbox{\mygrey\hbox{\typosize[15/]\bf AREAS OF EXPERTISE}
   \kern.3em \hrule height2pt}

{\noindent \raggedright \typosize[/22]
\myframe{Business Process Improvement}
\myframe{Laed Generation}
\myframe{Product-Market Fit}
\myframe{Eamil Marketing}
\myframe{Communicatins \& PR}
\myframe{Influential Negotiation Skills}
\par}

\bye

结果与您的示例图像完全相同。

答案2

下面的代码对我有用,引入了选项arc

\begin{tcolorbox}[width=1.5cm,height=.75cm, halign=center, valign=center,colframe=black, colback=lightgray, boxsep=-7pt,
 arc=2mm,% <<<
nobeforeafter]
C/C++
\end{tcolorbox}
\nolinebreak
\hspace{.1cm}
\begin{tcolorbox}[width=1.5cm,height=.75cm, halign=center, valign=center,colframe=black, colback=lightgray, boxsep=-7pt, arc=2mm,nobeforeafter]
Java 8
\end{tcolorbox}
\nolinebreak
\hspace{.1cm}
\begin{tcolorbox}[width=1.5cm,height=.75cm, halign=center, valign=center,colframe=black, colback=lightgray, boxsep=-7pt, arc=2mm,nobeforeafter]
J2EE
\end{tcolorbox}
\nolinebreak
\hspace{.1cm}
\begin{tcolorbox}[width=2.5cm,height=.75cm, halign=center, valign=center,colframe=black, colback=lightgray, boxsep=-7pt, arc=2mm,nobeforeafter]
HTML/CSS
\end{tcolorbox}

在此处输入图片描述

对于双色标头,下面的代码对我有帮助:

\begin{titlepage}
\AddToShipoutPictureBG*{\AtPageLowerLeft{%
 \color{lightgray}\rule{\paperwidth}{\paperheight}}}

\AddToShipoutPictureBG*{\AtPageLowerLeft{%
 \color{gray}\rule{\paperwidth}{.91\paperheight}}}

\AddToShipoutPictureBG*{\AtPageLowerLeft{%
 \color{white}\rule{\paperwidth}{.89\paperheight}}}
\end{titlepage}

在此处输入图片描述

相关内容