我想将技能添加到我在 LaTeX 中创建的简历的侧边栏,我正在使用 tcolorbox 包在文本周围创建一个椭圆框,但是每次我创建一个新的椭圆框时,文本(带框)都会换行. 如何强制它在同一行中一个接一个地添加?
这是模板的代码(乳胶模板二十秒CV):
\documentclass[letterpaper]{twentysecondcv} % a4paper for A4
\definecolor{shadecolor}{rgb}{1,0.8,0.3}
\usepackage{times,tcolorbox}
\newtcbox{\ovalbox}{colback=gray!50!white,boxrule=0pt,arc=5pt,
boxsep=0pt,left=4pt,right=4pt,top=2pt,bottom=2pt}
\profilepic{alice.jpeg}
\cvname{Your Name}
\cvjobtitle{about me}
\begin{document}
\aboutme{}
\contact{contact}
%----------------------------------------------------------------------------------------
% SKILLS
%----------------------------------------------------------------------------------------
\myskills{
\ovalbox{Skill 1}
\ovalbox{Skill2}
\ovalbox{Skill3}
\ovalbox{Skill4}
}
\references{references document 1}
\makeprofile % Print the sidebar
%----------------------------------------------------------------------------------------
% MAIN PAGE
%----------------------------------------------------------------------------------------
\section{About Me}
\hrulefill
\section{Experience}
\hrulefill
\section{Education}
\hrulefill
\section{Courses}
\hrulefill
\section{Other information}
\end{document}