如何在乳胶中制作这样的项目符号?

如何在乳胶中制作这样的项目符号?

我尝试了不同的方法,但没有得到这个输出 在此处输入图片描述

\section{Relevant Course Work}
 \resumeSubHeadingListStart
 \newlist{inlinelist}{itemize*}{1}
\setlist*[inlinelist,1]{label=\textbullet,
                        itemjoin={{ \ }}}
                        

\setlength\parindent{0pt}


\begin{inlinelist}

    \item Data Cleasing  \& Transfpormation
    \item Statistical \& Data Analisys
    \item Feature Design \& Implementation
    \item some other text
    \item two words
    \item Technique Validation
    \item Business Development
\end{inlinelist}

附图是我想要的输出

我的输出 -我的输出

答案1

有一个包叫任务,我认为这完全符合您的需求。它非常灵活,有许多选项可以影响列表。以下是示例

\documentclass{article}
\usepackage{tasks}
\usepackage{microtype}
\newlength\bullen

\begin{document}
\begingroup
\parindent=0pt
\footnotesize
{\scshape
    \begin{tabular*}{\linewidth}{@{}l@{}}
        Relevant work \\
        \hline
    \end{tabular*}}
\begin{tasks}[
        label={$\bullet$},
        label-width = 12pt,
        label-offset=0pt,
        item-indent=12pt,
        label-align = left,
        column-sep = 12pt,
    ](4)
    \task Data Cleasing  \& Transfpormation
    \task Statistical \& Data Analisys
    \task Feature Design \& Implementation
    \task some other text
    \task two words
    \task Technique Validation
    \task Business Development
\end{tasks}
\endgroup
\end{document}

在此处输入图片描述

相关内容