왼쪽과 오른쪽에 텍스트가 있는 글머리 기호가 있는 여러 줄 레이블

왼쪽과 오른쪽에 텍스트가 있는 글머리 기호가 있는 여러 줄 레이블

아래 이미지에 표시된 대로 형식을 복제하고 싶습니다(특히 양쪽에 텍스트가 있는 여러 줄 레이블이 있는 글머리 기호). 여기에 이미지 설명을 입력하세요

다음은 내가 사용하는 명령입니다.

\subsection{First line left text \hfill First line right text\\\ second line left text\hfill second line right text\\}

그러나 이것은 나에게 효과가 없습니다.

어떤 도움이라도 주시면 감사하겠습니다!

답변1

설명하는 것보다 보여주는 것이 더 쉽습니다. 귀하의 사진에는 첫 번째 글머리 기호가 상단이 아닌 텍스트 중앙에 표시되었으므로 \parbox. $\circ$총알로 사용할 수 있는 문자 외에 다른 문자도 있습니다 . 보다CTAN 기호그리고CTAN 정말 대단해요

enumite 패키지를 사용하면 여백과 글머리 기호를 약간 더 쉽게 변경할 수 있습니다.

\documentclass[]{article}
\usepackage{blindtext}% MWE only
\leftmargini=1em
\leftmarginii=2.5em
\begin{document}
\hrule
\begin{itemize}
\item\parbox{\linewidth}{First line left text \hfill First line right text\par
  %\leftskip=0.5em \righjtskip=0.5em % apply to all following lines
  %second line left text\hfill second line right text}
  \hspace*{0.5em}second line left text\hfill second line right text\hspace*{0.5em}}% one line only
\begin{itemize}\rightskip=\bibindent
  \item[$\circ$] next level.
  \item[$\circ$] \blindtext
\end{itemize}
\end{itemize}
\end{document}

데모

관련 정보