Skip to main content
added 444 characters in body
Source Link
dexteritas
  • 9.8k
  • 3
  • 28
  • 39

Description

You can use a tabular environment for this. The brackets are placed automatically for the first and last column.

I defined an environment bracketitemize and a command \bitem to make this more comfortable.

Result

enter image description here

Code

\documentclass{article} \usepackage{array} \newenvironment{bracketitemize}{% \setlength{\tabcolsep}{0pt}% \begin{tabular}{ >{\textbullet\quad (} c c >{)} c }% }{% \end{tabular}% } \newcommand{\bitem}[1]{% & #1 &\\% } \begin{document}   manually:  { \setlength{\tabcolsep}{0pt} \begin{tabular}{ >{\textbullet\quad (} c c >{)} c } & Help &\\ & Individual &\\ & Test &&\\ \end{tabular} } \medskip With \texttt{bracketitemize}: \begin{bracketitemize} \bitem{Help}  \bitem{Individual} \bitem{Test} \end{bracketitemize} \end{document} 

Description

You can use a tabular environment for this. The brackets are placed automatically for the first and last column.

Result

enter image description here

Code

\documentclass{article} \usepackage{array} \begin{document} { \setlength{\tabcolsep}{0pt} \begin{tabular}{ >{\textbullet\quad (} c c >{)} c } & Help &\\ & Individual &\\ & Test & \end{tabular} } \end{document} 

Description

You can use a tabular environment for this. The brackets are placed automatically for the first and last column.

I defined an environment bracketitemize and a command \bitem to make this more comfortable.

Result

enter image description here

Code

\documentclass{article} \usepackage{array} \newenvironment{bracketitemize}{% \setlength{\tabcolsep}{0pt}% \begin{tabular}{ >{\textbullet\quad (} c c >{)} c }% }{% \end{tabular}% } \newcommand{\bitem}[1]{% & #1 &\\% } \begin{document}   manually:  { \setlength{\tabcolsep}{0pt} \begin{tabular}{ >{\textbullet\quad (} c c >{)} c } & Help &\\ & Individual &\\ & Test &\\ \end{tabular} } \medskip With \texttt{bracketitemize}: \begin{bracketitemize} \bitem{Help}  \bitem{Individual} \bitem{Test} \end{bracketitemize} \end{document} 
Source Link
dexteritas
  • 9.8k
  • 3
  • 28
  • 39

Description

You can use a tabular environment for this. The brackets are placed automatically for the first and last column.

Result

enter image description here

Code

\documentclass{article} \usepackage{array} \begin{document} { \setlength{\tabcolsep}{0pt} \begin{tabular}{ >{\textbullet\quad (} c c >{)} c } & Help &\\ & Individual &\\ & Test & \end{tabular} } \end{document}