创建有吸引力的部分

创建有吸引力的部分

我想根据图像创建部分样式,您能指导我如何创建吗?

\documentclass{article}
\usepackage{scimisc-cv}
\usepackage{multicol}
\usepackage{enumitem}




\begin{document}

% \maketitle %% This is LaTeX's default title constructed from \title,\author,\date

\makecvtitle %% This is a custom command constructing the CV title from \cvname, \cvpersonalinfo

\section{Summary}

\end{document}

scimic 包可以在以下位置找到: Scismic 推荐的生物技术和制药行业职位简历模板

答案1

您可以使用自定义宏来格式化使用sectsty包的节标题。如果您需要更多灵活性,请考虑使用titlesec包,或切换到更通用的文档类,例如 KOMA 类之一或memoir

\documentclass{article}
\usepackage{sectsty}
\usepackage{xcolor}
\newcommand\boxedsection[1]{%
    \noindent
    \makebox[0pt][l]{\hspace{1.4em}\rule[-3ex]{1pt}{2ex}}%
    \makebox[0pt][l]{\rule[-2ex]{\dimexpr\textwidth-5pt\relax}{1pt}}%
    \colorbox{brown}{\parbox{\dimexpr\textwidth-2\fboxsep\relax}{#1}}%
}
\allsectionsfont{\boxedsection}
\begin{document}

\section*{CAREER PROFILE}

\end{document}

在此处输入图片描述

相关内容