多个并排的项目符号

多个并排的项目符号

我已经看到了两列的示例,但我试图执行以下操作: 在此处输入图片描述

到下面的代码

\section{Key Skills}
\begin{tasks}[style=itemize](2)
    \task \textbf{Data Cleansing & Transformation} 
    \task \textbf{Statistical & Data Analysis}
    \task \textbf{Feature Design & Implementation}
    \task \textbf{Machine Learning}
    \task \textbf{Mathematical Programming}
    \task \textbf{Deep Learning}
    \task \textbf{}
\end{tasks}

在此处输入图片描述

答案1

  • 请始终提供一个 MWE(最小工作示例),这是一个小但完整的文档,可以按原样进行编译。
  • 其中提供你自己所做的事情并指出你遇到的问题。
  • 一种可能的解决方案是使用enumitem包和定义inlinelist
\documentclass{book}
\usepackage{enumitem}
\newlist{inlinelist}{itemize*}{1}
\setlist*[inlinelist,1]{label=\textbullet,
                        itemjoin={{ \ }}}

\setlength\parindent{0pt}

\begin{document}
\rule{\linewidth}{2pt}
    \centerline{\textbf{KEY SKILLS}}

\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}

\medskip
Standard list
\begin{itemize}
    \item Item 1
    \item Item 2
    \item Item 3
\end{itemize}

\end{document}

在此处输入图片描述

相关内容