인라인 열거 항목에서 첫 번째 레이블 제거

인라인 열거 항목에서 첫 번째 레이블 제거

글머리 기호가 있는 인라인 열거 항목을 사용하고 있지만 첫 번째 항목 앞에 글머리 기호가 없기를 바랍니다. 설명서를 읽은 후 다음을 시도했지만 여전히 첫 번째 항목 앞에 불필요한 공간이 남습니다. labelep을 0으로 설정하여 이를 제거하려고 했지만 아무 효과가 없었습니다. 이를 수행할 수 있는 좋은 방법이 있습니까?

최소(비) 작동 예:

\documentclass[]{article} 
\usepackage[inline]{enumitem}
\begin{document}

This is a short paragraph

\begin{enumerate*}[label={}, itemjoin={~\textbullet}]
\item First item\item Second item
\item Third item
\end{enumerate*}

This is another short paragraph

\end{document}

답변1

핵심은 set afterlabel={}이므로 빈 레이블 뒤에는 아무것도 추가되지 않습니다.

\documentclass[]{article}
\usepackage[inline]{enumitem}

\usepackage{showframe} % just for the example
\setlength{\parindent}{0pt} % just for the example

\begin{document}

This is a short paragraph

\begin{enumerate*}[
  label={},
  itemjoin={~\textbullet\ },
  afterlabel={},
]
\item First item
\item Second item
\item Third item
\end{enumerate*}

This is another short paragraph

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보