左側と右側にテキストがある箇条書きの複数行ラベル

左側と右側にテキストがある箇条書きの複数行ラベル

以下の画像に示すような形式 (具体的には、両側にテキストがある複数行のラベルが付いた箇条書き) を複製したいと思います。 ここに画像の説明を入力してください

私が使用しているコマンドは次のとおりです。

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

しかし、これは私にとってはうまくいきません。

ご協力いただければ幸いです。

答え1

説明するよりも見せる方が簡単です。あなたの写真では、最初の箇条書きがテキストの上部ではなく中央に配置されていたため、 になっています。箇条書きとして使用できる\parbox文字は他にもあります。$\circ$CTANシンボルそしてCTAN フォント素晴らしい

enumitem パッケージを使用すると、余白と箇条書きの変更が少し簡単になります。

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

デモ

関連情報